chore: added npm outdated
command for patch
,minor
, and major
commands (#146)
This commit is contained in:
parent
b2eeed0663
commit
facefc4da5
1 changed files with 3 additions and 3 deletions
|
@ -24,9 +24,9 @@
|
|||
"lint:fix": "npm run lint:fix --workspaces --if-present",
|
||||
"build": "npm run build --workspaces --if-present",
|
||||
"test:watch": "npm run test:watch --workspaces --if-present",
|
||||
"patch": "npm version patch -w",
|
||||
"minor": "npm version minor -w",
|
||||
"major": "npm version major -w",
|
||||
"patch": "npm outdated && npm version patch -w",
|
||||
"minor": "npm outdated && npm version minor -w",
|
||||
"major": "npm outdated && npm version major -w",
|
||||
"publish": "npm publish --access public -w"
|
||||
},
|
||||
"license": "ISC",
|
||||
|
|
Loading…
Reference in a new issue