Skip to content

Commit 77a9237

Browse files
committed
Fix version scripts
- Fixed scripts `next-patch`, `next-minor` and `next-major` to use the non `pre[...]` command.
1 parent 6be4102 commit 77a9237

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
@@ -10,9 +10,9 @@
1010
"test": "cross-env NODE_ENV=test jest",
1111
"watch-test": "npm run test -- --watchAll",
1212
"next-rc": "npm --no-git-tag-version version prerelease --preid=rc",
13-
"next-patch": "npm --no-git-tag-version version prepatch",
14-
"next-minor": "npm --no-git-tag-version version preminor",
15-
"next-major": "npm --no-git-tag-version version premajor",
13+
"next-patch": "npm --no-git-tag-version version patch",
14+
"next-minor": "npm --no-git-tag-version version minor",
15+
"next-major": "npm --no-git-tag-version version major",
1616
"build:win": "electron-builder build --win",
1717
"build:mac": "electron-builder build --mac"
1818
},

0 commit comments

Comments
 (0)