We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0825873 commit 6bd2f14Copy full SHA for 6bd2f14
package.json
@@ -12,7 +12,14 @@
12
"jquery": ">1.9.0"
13
},
14
"scripts": {
15
- "test": "grunt test --stack"
+ "preversion": "npm test && npm run build",
16
+ "version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
17
+ "postversion": "git push --tags && git checkout master && git branch -D release && git push",
18
+ "release:patch": "npm version patch && npm publish",
19
+ "release:minor": "npm version minor && npm publish",
20
+ "release:major": "npm version major && npm publish",
21
+ "test": "grunt test --stack",
22
+ "build": "grunt build"
23
24
"devDependencies": {
25
"grunt": "^0.4.5",
0 commit comments