@bobfrankston/npmglobalize 1.0.84 → 1.0.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -377,7 +377,7 @@ export async function main() {
377
377
  pkg.scripts = {};
378
378
  const scripts = pkg.scripts;
379
379
  const changes = [];
380
- if (scripts.release) {
380
+ if (scripts.release && scripts.release !== 'npmglobalize') {
381
381
  scripts['old-release'] = scripts.release;
382
382
  changes.push(`renamed release → old-release`);
383
383
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/npmglobalize",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "Transform file: dependencies to npm versions for publishing",
5
5
  "main": "index.js",
6
6
  "type": "module",