@bobfrankston/npmglobalize 1.0.128 → 1.0.129

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 +2 -2
  2. package/package.json +1 -1
package/lib.js CHANGED
@@ -781,7 +781,7 @@ export function transformDeps(pkg, baseDir, verbose = false, forcePublish = fals
781
781
  console.log(colors.yellow(` ⟳ ${name}@${targetVersion} will be republished (--force-publish)`));
782
782
  }
783
783
  else {
784
- console.log(colors.red(` ${name}@${targetVersion} not found on npm (local: ${value})`));
784
+ console.log(colors.yellow(` ${name}@${targetVersion} not yet on npm will publish`));
785
785
  }
786
786
  }
787
787
  else {
@@ -2989,7 +2989,7 @@ export async function globalize(cwd, options = {}, configOptions = {}) {
2989
2989
  // Check if target packages need to be published
2990
2990
  if (transformResult.unpublished.length > 0 && !noPublish) {
2991
2991
  console.log('');
2992
- console.log(colors.red(' WARNING: Some file: dependencies are not published on npm:'));
2992
+ console.log(colors.yellow('Dependencies to publish:'));
2993
2993
  for (const { name, version, path } of transformResult.unpublished) {
2994
2994
  console.log(colors.yellow(` ${name}@${version} (${path})`));
2995
2995
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/npmglobalize",
3
- "version": "1.0.128",
3
+ "version": "1.0.129",
4
4
  "description": "Transform file: dependencies to npm versions for publishing",
5
5
  "main": "index.js",
6
6
  "type": "module",