chore: learn version ignore private package

affects: fes-doc
This commit is contained in:
bac-joker 2020-09-19 16:47:03 +08:00 committed by harrywan
parent 55f77505a5
commit 60463533cf
3 changed files with 7 additions and 7 deletions

View File

@ -17,17 +17,15 @@
},
"command": {
"publish": {
"ignoreChanges": ["*.md", "**/test/**"]
"ignoreChanges": ["*.md", "**/test/**"],
"message": "chore(release): publish"
},
"version": {
"push": false
}
},
"packages": [
"packages/fes-cli",
"packages/fes-core",
"packages/fes-ui",
"packages/fes-template"
"packages/*"
],
"npmClient": "npm",
"ignoreChanges": ["**/test/**", "**/*.md"]

View File

@ -4,7 +4,8 @@
"description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true,
"scripts": {
"bootstrap": "lerna bootstrap"
"bootstrap": "lerna bootstrap",
"version": "lerna version --no-commit-hooks --no-private"
},
"author": "harrywan qlin",
"license": "MIT",

View File

@ -25,5 +25,6 @@
},
"dependencies": {
"@webank/fes-ui": "^0.1.1"
}
},
"private": true
}