Skip to content

Commit 6030d5e

Browse files
committed
Add npm script for the bump version
1 parent 4130a0e commit 6030d5e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@
1919
"_lint": "tslint -s node_modules/custom-tslint-formatters/formatters -t grouped",
2020
"lint": "npm run _lint -- -p tsconfig.json",
2121
"lint:fix": "npm run lint -- --fix",
22-
"lint:lint-staged": "npm run _lint -- --fix"
22+
"lint:lint-staged": "npm run _lint -- --fix",
23+
"update-pkg-version": "npm --no-git-tag-version version",
24+
"u": "npm run update-pkg-version",
25+
"u:patch": "npm run u -- patch",
26+
"u:minor": "npm run u -- minor",
27+
"u:major": "npm run u -- major"
2328
},
2429
"repository": {
2530
"type": "git",

0 commit comments

Comments
 (0)