@ozyman42/ozy-cli 0.2.0 → 0.2.1
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2784,7 +2784,7 @@ var require_ssh_config2 = __commonJS((exports) => {
|
|
|
2784
2784
|
exports.default = ssh_config_1.default;
|
|
2785
2785
|
});
|
|
2786
2786
|
// package.json
|
|
2787
|
-
var version = "0.2.
|
|
2787
|
+
var version = "0.2.1";
|
|
2788
2788
|
|
|
2789
2789
|
// node_modules/commander/esm.mjs
|
|
2790
2790
|
var import__ = __toESM(require_commander(), 1);
|
|
@@ -9003,13 +9003,13 @@ function buildUpgradeCommand(info) {
|
|
|
9003
9003
|
const pkg = "@ozyman42/ozy-cli@latest";
|
|
9004
9004
|
if (info.scope === "global") {
|
|
9005
9005
|
if (info.pm === "bun")
|
|
9006
|
-
return ["bun", "add", "-g", pkg];
|
|
9006
|
+
return ["bun", "add", "--no-cache", "-g", pkg];
|
|
9007
9007
|
if (info.pm === "pnpm")
|
|
9008
9008
|
return ["pnpm", "add", "-g", pkg];
|
|
9009
9009
|
return ["npm", "install", "-g", pkg];
|
|
9010
9010
|
}
|
|
9011
9011
|
if (info.pm === "bun")
|
|
9012
|
-
return ["bun", "add", pkg];
|
|
9012
|
+
return ["bun", "add", "--no-cache", pkg];
|
|
9013
9013
|
if (info.pm === "pnpm")
|
|
9014
9014
|
return ["pnpm", "add", pkg];
|
|
9015
9015
|
return ["npm", "install", pkg];
|