1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 10:52:11 +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

@ -6,3 +6,6 @@ indent_size = 4
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true 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", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"version": "independent", "version": "independent",
"publishConfig": { "command": {
"access": "public" "publish": {
"npmClient": "npm",
"allowBranch": ["master"],
"registry": "https://registry.npmjs.org/"
}
} }
} }

View File

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

View File

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