Skip to content

Commit 5cae8ea

Browse files
committed
chore: bump 1.5.1
1 parent 475f1f7 commit 5cae8ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rspack/plugin-react-refresh",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"repository": "https://github.com/rspack-contrib/rspack-plugin-react-refresh",
55
"license": "MIT",
66
"description": "React refresh plugin for Rspack",
@@ -25,7 +25,7 @@
2525
"prepare": "simple-git-hooks && npm run build",
2626
"test": "jest --colors",
2727
"release": "node ./scripts/release.mjs",
28-
"bump": "npx bumpp"
28+
"bump": "npx bumpp --no-push --no-tag --no-commit"
2929
},
3030
"files": ["client", "dist", "exports"],
3131
"simple-git-hooks": {

scripts/release.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const publishVersion = pkg.version;
2323

2424
const parsed = cli.parse();
2525
const npmTag = parsed.options.tag;
26-
const isDryRun = parsed.options.dryRun;
26+
const isDryRun = parsed.options.dryRun === 'true';
2727

2828
const allowedTags = ['latest', 'canary', 'alpha', 'beta', 'rc', 'nightly'];
2929
if (!allowedTags.includes(npmTag)) {

0 commit comments

Comments
 (0)