@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.
- package/lib.js +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.
|
|
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.
|
|
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
|
}
|