@bobfrankston/npmglobalize 1.0.127 → 1.0.128

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/lib.js +4 -0
  2. package/package.json +1 -1
package/lib.js CHANGED
@@ -797,6 +797,10 @@ export function transformDeps(pkg, baseDir, verbose = false, forcePublish = fals
797
797
  unpublished.push({ name, version: targetVersion, path: targetPath });
798
798
  console.log(colors.yellow(` ⟳ ${name}@${targetVersion} has local changes not on npm — will republish`));
799
799
  }
800
+ else if (checkIgnoreFiles(targetPath, { verbose }).securityChanges.length > 0) {
801
+ unpublished.push({ name, version: targetVersion, path: targetPath });
802
+ console.log(colors.yellow(` ⟳ ${name}@${targetVersion} has missing ignore patterns — will republish`));
803
+ }
800
804
  }
801
805
  pkg[key][name] = npmVersion;
802
806
  if (verbose) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/npmglobalize",
3
- "version": "1.0.127",
3
+ "version": "1.0.128",
4
4
  "description": "Transform file: dependencies to npm versions for publishing",
5
5
  "main": "index.js",
6
6
  "type": "module",