chore: added npm outdated command for patch,minor, and major commands (#146)

This commit is contained in:
Rishabhraghwendra18 2022-10-24 20:43:23 +05:30 committed by GitHub
parent b2eeed0663
commit facefc4da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",