@bobfrankston/npmglobalize 1.0.96 → 1.0.97
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/.claude/settings.local.json +6 -1
- package/lib.js +2 -1
- package/package.json +1 -1
|
@@ -31,7 +31,12 @@
|
|
|
31
31
|
"Bash(npmglobalize:*)",
|
|
32
32
|
"Bash(npm whoami:*)",
|
|
33
33
|
"Bash(where npmglobalize:*)",
|
|
34
|
-
"Bash(npm audit:*)"
|
|
34
|
+
"Bash(npm audit:*)",
|
|
35
|
+
"Bash(wsl npm:*)",
|
|
36
|
+
"Bash(find:*)",
|
|
37
|
+
"Bash(npx globalize:*)",
|
|
38
|
+
"Bash(globalize:*)",
|
|
39
|
+
"Bash(wztest:*)"
|
|
35
40
|
]
|
|
36
41
|
}
|
|
37
42
|
}
|
package/lib.js
CHANGED
|
@@ -2350,7 +2350,8 @@ export async function globalize(cwd, options = {}, configOptions = {}) {
|
|
|
2350
2350
|
updateMajor,
|
|
2351
2351
|
fix,
|
|
2352
2352
|
conform, // Propagate conform to dependencies
|
|
2353
|
-
publishDeps // Propagate so transitive deps also get published
|
|
2353
|
+
publishDeps, // Propagate so transitive deps also get published
|
|
2354
|
+
forcePublish // Propagate so transitive deps get force-published too
|
|
2354
2355
|
});
|
|
2355
2356
|
if (!depSuccess) {
|
|
2356
2357
|
console.error(colors.red(`Failed to publish ${name}`));
|