Comparing version 0.0.11 to 0.0.13
{ | ||
"name": "bump-npm", | ||
"version": "0.0.11", | ||
"version": "0.0.13", | ||
"description": "bump package version and publish", | ||
@@ -14,3 +14,5 @@ "main": "index.js", | ||
"scripts": { | ||
"patch": "node ./src/pnpm.js publish -r patch" | ||
"patch": "node ./src/pnpm.js publish -r patch", | ||
"minor": "node ./src/pnpm.js publish -r minor", | ||
"major": "node ./src/pnpm.js publish -r major" | ||
}, | ||
@@ -17,0 +19,0 @@ "preferGlobal": true, |
@@ -75,12 +75,4 @@ #!/usr/bin/env node | ||
} | ||
const { stdout2, stderr2 } = await exec(`npm version ${newVersion} --allow-same-version`); | ||
if (stderr2) { | ||
console.log('published to npm but not git'); | ||
} else { | ||
console.log(stdout2); | ||
} | ||
} | ||
run(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3398
83