Skip to content

Commit

Permalink
update release scripts to avoid complications from workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Oct 24, 2023
1 parent 9c648f2 commit 4be0c06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"doc": "rollup -c && jsdoc2md -f tmp/kiwi.js -m none -g none > docs/Kiwi.md && node scripts/docs-update-headings.js && prettier docs/Kiwi.md --write",
"bench": "node bench/main.js",
"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"
"release:patch": "npm version --no-workspaces patch -m 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version --no-workspaces minor -m 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version --no-workspaces major -m 'v%s' && npm publish && git push --follow-tags"
}
}

0 comments on commit 4be0c06

Please sign in to comment.