push scripts
parent
a41075a3a1
commit
2ca0d1508a
10
package.json
10
package.json
|
@ -24,7 +24,15 @@
|
||||||
"build:copy-files": "node ./scripts/copy-files.js",
|
"build:copy-files": "node ./scripts/copy-files.js",
|
||||||
"precommit": "lint-staged",
|
"precommit": "lint-staged",
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"prepush": "npm run build",
|
||||||
|
"push": "cd build && npm publish --registry http://alpine-docker:4873",
|
||||||
|
"push:major": "npm run version:major && npm run push",
|
||||||
|
"push:minor": "npm run version:minor && npm run push",
|
||||||
|
"push:patch": "npm run version:patch && npm run push",
|
||||||
|
"version:major": "npm version major --no-git-tag-version",
|
||||||
|
"version:minor": "npm version minor --no-git-tag-version",
|
||||||
|
"version:patch": "npm version patch --no-git-tag-version"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.16.7",
|
"@babel/cli": "^7.16.7",
|
||||||
|
|
Loading…
Reference in New Issue