Skip to content

Commit

Permalink
call git add in the npm version script. The docs say to do so, althou…
Browse files Browse the repository at this point in the history
…gh it seems to have worked without it, but just in case
  • Loading branch information
trusktr committed Oct 1, 2023
1 parent 5302bed commit a5094cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"doc": "jsdoc2md -f tmp/kiwi.js -m none -g none > docs/Kiwi.md && node scripts/docs-update-headings.js && prettier docs/Kiwi.md --write",
"lint": "prettier . --check",
"bench": "node bench/main.cjs",
"version": "npm run clean && npm run build && npm test && npm run bench",
"version": "npm run clean && npm run build && npm test && npm run bench && git add .",
"release:patch": "npm version patch -m 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version minor -m 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version major -m 'v%s' && npm publish && git push --follow-tags"
Expand Down

0 comments on commit a5094cf

Please sign in to comment.