1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 02:42:13 +00:00
This commit is contained in:
Florian Bouillon 2020-06-26 15:39:47 +02:00
parent ff67d008eb
commit aa2d969295
4 changed files with 21 additions and 7 deletions

View File

@ -5,4 +5,7 @@ indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false

View File

@ -5,7 +5,11 @@
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent",
"publishConfig": {
"access": "public"
"command": {
"publish": {
"npmClient": "npm",
"allowBranch": ["master"],
"registry": "https://registry.npmjs.org/"
}
}
}

View File

@ -1,7 +1,14 @@
{
"name": "components",
"private": true,
"workspaces": ["packages/*"],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
},
"license": "MIT",
"dependencies": {
"lerna": "^3.22.1"

View File

@ -1,15 +1,14 @@
{
"name": "@aviortheking/logger",
"name": "@dzeio/logger",
"version": "1.0.1",
"description": "My Personnal Logger",
"repository": {
"type": "git",
"url": "https://github.com/Aviortheking/components.git",
"url": "https://github.com/dzeiocom/libs.git",
"directory": "packages/Logger"
},
"author": "Aviortheking",
"license": "MIT",
"private": false,
"main": "./dist/Logger.js",
"browser": "./dist/browser.js",
"types": "./dist/Logger.d.ts",
@ -26,6 +25,7 @@
"webpack-cli": "^3.3.12"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "webpack --mode=\"production\" && tsc"
}
}