Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ node-plugin/
```sh
# major, minor and patch are acceptable parameters:
bun run ./scripts/update-version.bun.ts minor
npm update
```
3. Open a PR and merge the branch into `main`.
4. Switch to `main` and fetch the new commit.
Expand Down
131 changes: 61 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"prepack": "tsc &&neon update",
"format": "prettier src/ --write && prettier tests/ --write",
"version": "neon bump --binaries platforms && git add .",
"bump:patch": "node scripts/update-version.node.mjs patch",
"bump:minor": "node scripts/update-version.node.mjs minor",
"bump:major": "node scripts/update-version.node.mjs major",
"bump:patch": "node scripts/update-version.node.mjs patch && npm update",
"bump:minor": "node scripts/update-version.node.mjs minor && npm update",
"bump:major": "node scripts/update-version.node.mjs major && npm update",
"update": "cargo update && npm update"
},
"exports": {
Expand Down Expand Up @@ -75,4 +75,4 @@
"overrides": {
"tmp": "^0.2.4"
}
}
}