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": { "command": {
"publish": { "publish": {
"ignoreChanges": ["*.md", "**/test/**"] "ignoreChanges": ["*.md", "**/test/**"],
"message": "chore(release): publish"
}, },
"version": { "version": {
"push": false "push": false
} }
}, },
"packages": [ "packages": [
"packages/fes-cli", "packages/*"
"packages/fes-core",
"packages/fes-ui",
"packages/fes-template"
], ],
"npmClient": "npm", "npmClient": "npm",
"ignoreChanges": ["**/test/**", "**/*.md"] "ignoreChanges": ["**/test/**", "**/*.md"]

View File

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

View File

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