[build] update release.sh

This commit is contained in:
陈嘉涵 2018-10-15 11:29:07 +08:00
parent b3e82098d3
commit 001ee9d4a1
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ then
npm run build:lib
if [[ `git status --porcelain` ]];
then
git add -A
git commit -am "[build] $VERSION"
fi

View File

@ -9,7 +9,7 @@
"dev": "node build/dev.js",
"lint": "eslint ./packages --ext .js",
"release": "sh build/release.sh",
"build:lib": "rm -rf dist && NODE_ENV=production node build/compiler.js",
"build:lib": "yarn && rm -rf dist && NODE_ENV=production node build/compiler.js",
"build:site": "rm -rf docs/dist && cross-env NODE_ENV=production webpack --config build/webpack.doc.prd.js && gh-pages -d docs/dist",
"build:changelog": "vant-doc changelog --tag v0.3.0 ./docs/dist/changelog.md"
},