We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cffae35 commit 3a8f68dCopy full SHA for 3a8f68d
package.json
@@ -20,7 +20,10 @@
20
"sideEffects": false,
21
"scripts": {
22
"clean": "rm -rf ./dist",
23
- "build": "yarn clean && rollup -c rollup.config.mjs"
+ "build": "npm run clean && rollup -c rollup.config.mjs",
24
+ "release:patch": "npm run build && npm version patch && yarn publish && git push",
25
+ "release:minor": "npm run build && npm version minor && yarn publish && git push",
26
+ "release:major": "npm run build && npm version major && yarn publish && git push"
27
},
28
"keywords": [
29
"react-component",
0 commit comments