Skip to content
Snippets Groups Projects
Unverified Commit 03e4f575 authored by Cotes Chung's avatar Cotes Chung
Browse files

build(npm, shell): use the global `standard-version`

parent b58cab1c
No related branches found
No related tags found
No related merge requests found
{
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Improvements"
}
]
}
......@@ -18,26 +18,6 @@
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"standard-version": "^9.3.2",
"uglify-js": "^3.14.3"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Improvements"
}
]
}
}
......@@ -10,7 +10,7 @@
#
# Usage: run on main branch or the patch branch
#
# Requires: Git, Node.js, NPX and RubyGems
# Requires: Git, NPM and RubyGems
set -eu
......@@ -36,7 +36,7 @@ FILES=(
TOOLS=(
"git"
"npm"
"npx"
"standard-version"
"gem"
)
......@@ -143,9 +143,9 @@ resume_config() {
# auto-generate a new version number to the file 'package.json'
standard_version() {
if $opt_pre; then
npx standard-version --prerelease rc
standard-version --prerelease rc
else
npx standard-version
standard-version
fi
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment