Skip to content

Commit

Permalink
update release scripts to avoid running in workspace context or it br…
Browse files Browse the repository at this point in the history
…eaks. npm/cli#5687
  • Loading branch information
trusktr committed Nov 22, 2023
1 parent 63ef916 commit 288759e
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 @@ -14,9 +14,9 @@
"url": "https://github.com/lume/cli/issues"
},
"scripts": {
"release:patch": "npm version patch --message 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version minor --message 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version major --message 'v%s' && npm publish && git push --follow-tags"
"release:patch": "npm version patch --no-workspaces --message 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version minor --no-workspaces --message 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version major --no-workspaces --message 'v%s' && npm publish && git push --follow-tags"
},
"dependencies": {
"@babel/cli": "7.23.0",
Expand Down

0 comments on commit 288759e

Please sign in to comment.