build(npm, shell): use the global standard-version
This commit is contained in:
parent
b58cab1c07
commit
03e4f575ba
3 changed files with 24 additions and 24 deletions
20
.versionrc.json
Normal file
20
.versionrc.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"skip": {
|
||||||
|
"commit": true,
|
||||||
|
"tag": true
|
||||||
|
},
|
||||||
|
"types": [
|
||||||
|
{
|
||||||
|
"type": "feat",
|
||||||
|
"section": "Features"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "fix",
|
||||||
|
"section": "Bug Fixes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "perf",
|
||||||
|
"section": "Improvements"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
package.json
20
package.json
|
@ -18,26 +18,6 @@
|
||||||
"gulp-insert": "^0.5.0",
|
"gulp-insert": "^0.5.0",
|
||||||
"gulp-rename": "^2.0.0",
|
"gulp-rename": "^2.0.0",
|
||||||
"gulp-uglify": "^3.0.2",
|
"gulp-uglify": "^3.0.2",
|
||||||
"standard-version": "^9.3.2",
|
|
||||||
"uglify-js": "^3.14.3"
|
"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
|
# Usage: run on main branch or the patch branch
|
||||||
#
|
#
|
||||||
# Requires: Git, Node.js, NPX and RubyGems
|
# Requires: Git, NPM and RubyGems
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ FILES=(
|
||||||
TOOLS=(
|
TOOLS=(
|
||||||
"git"
|
"git"
|
||||||
"npm"
|
"npm"
|
||||||
"npx"
|
"standard-version"
|
||||||
"gem"
|
"gem"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -143,9 +143,9 @@ resume_config() {
|
||||||
# auto-generate a new version number to the file 'package.json'
|
# auto-generate a new version number to the file 'package.json'
|
||||||
standard_version() {
|
standard_version() {
|
||||||
if $opt_pre; then
|
if $opt_pre; then
|
||||||
npx standard-version --prerelease rc
|
standard-version --prerelease rc
|
||||||
else
|
else
|
||||||
npx standard-version
|
standard-version
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue