We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf821b1 commit a088906Copy full SHA for a088906
package.json
@@ -14,6 +14,10 @@
14
"prettier:lint": "prettier -c .",
15
"prettier:fix": "prettier --write .",
16
"start": "node dist/index.js",
17
+ "deploy": "npm run build && npm publish",
18
+ "deploy:patch": "npm version patch && npm run build && npm publish",
19
+ "deploy:minor": "npm version minor && npm run build && npm publish",
20
+ "deploy:major": "npm version major && npm run build && npm publish",
21
"postbuild": "node ./.version-updater.js"
22
},
23
"files": [
0 commit comments