We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62dd5ad commit 66664bcCopy full SHA for 66664bc
package.json
@@ -15,7 +15,10 @@
15
"build": "npm run clean && tsc && cp ./src/api.d.ts ./dist",
16
"clean": "rm -rf ./dist",
17
"test": "node --test --experimental-strip-types test/*.test.ts test/*.test.js",
18
- "release": "npm run clean && npm run build && bump patch --commit --push --tag && npm publish --access public"
+ "bump": "npm version patch && git push origin main --follow-tags",
19
+ "bump:minor": "npm version minor && git push origin main --follow-tags",
20
+ "bump:major": "npm version major && git push origin main --follow-tags",
21
+ "release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
22
},
23
"files": [
24
"dist",
0 commit comments