We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ace186 commit 8ba7f95Copy full SHA for 8ba7f95
package.json
@@ -15,7 +15,10 @@
15
"precommit": "npm test",
16
"commitmsg": "./node_modules/.bin/validate-commit-msg",
17
"test": "npm run lint-prod && ./node_modules/.bin/ava --verbose",
18
- "test:watch": "npm run lint && ./node_modules/.bin/ava --verbose --watch"
+ "test:watch": "npm run lint && ./node_modules/.bin/ava --verbose --watch",
19
+ "release:patch": "npm run commit && npm version patch && git push upstream master --tags && npm publish",
20
+ "release:minor": "npm run commit && npm version minor && git push upstream master --tags && npm publish",
21
+ "release:major": "npm run commit && npm version major && git push upstream master --tags && npm publish"
22
},
23
"repository": {
24
"type": "git",
0 commit comments