Skip to content

Commit 6866cc1

Browse files
đź”§ Updated release scripts in package.json to use npm version commands instead of bun version
1 parent 65c3eda commit 6866cc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎package.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
"test:run": "vitest run",
4141
"publish:dry": "bun publish --dry-run",
4242
"release": "bun test:run && bun run build",
43-
"release:patch": "bun run release && bun version patch && git push && git push --tags",
44-
"release:minor": "bun run release && bun version minor && git push && git push --tags",
45-
"release:major": "bun run release && bun version major && git push && git push --tags"
43+
"release:patch": "bun run release && npm version patch && git push && git push --tags",
44+
"release:minor": "bun run release && npm version minor && git push && git push --tags",
45+
"release:major": "bun run release && npm version major && git push && git push --tags"
4646
},
4747
"files": [
4848
"dist",

0 commit comments

Comments
 (0)