Skip to content

Commit

Permalink
🔧 chore(package.json): remove git push command from release script
Browse files Browse the repository at this point in the history
The git push command was removed from the release script to avoid automatically pushing changes to the repository. This allows for more control over when changes are pushed to the repository.
  • Loading branch information
nyxb committed May 21, 2023
1 parent ba39440 commit 8b9a2de
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 @@ -36,7 +36,7 @@
"type-check": "tsc --noEmit",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"release": "nyxr test && nyxlx changelogen --release && pnpm publish && git push --follow-tags",
"release": "nyxr test && nyxlx changelogen --release && pnpm publish",
"test": "nyxr lint && vitest run --coverage"
},
"files": [
Expand Down

0 comments on commit 8b9a2de

Please sign in to comment.