@cerefox/memory 0.9.9 → 0.9.10

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.
@@ -7184,7 +7184,7 @@ var exports_meta = {};
7184
7184
  __export(exports_meta, {
7185
7185
  PKG_VERSION: () => PKG_VERSION
7186
7186
  });
7187
- var PKG_VERSION = "0.9.9";
7187
+ var PKG_VERSION = "0.9.10";
7188
7188
  var init_meta = () => {};
7189
7189
 
7190
7190
  // ../../node_modules/.bun/tslib@2.8.1/node_modules/tslib/tslib.js
@@ -76501,7 +76501,7 @@ function detectRuntime() {
76501
76501
  if (bin.includes(".bun") || bin.includes("/bun/")) {
76502
76502
  return {
76503
76503
  command: "bun",
76504
- args: (v) => ["install", "-g", `@cerefox/memory@${v}`],
76504
+ args: (v) => ["install", "-g", "--no-cache", `@cerefox/memory@${v}`],
76505
76505
  description: "Bun"
76506
76506
  };
76507
76507
  }
@@ -76521,7 +76521,7 @@ function detectRuntime() {
76521
76521
  }
76522
76522
  return {
76523
76523
  command: "npm",
76524
- args: (v) => ["install", "-g", `@cerefox/memory@${v}`],
76524
+ args: (v) => ["install", "-g", "--prefer-online", `@cerefox/memory@${v}`],
76525
76525
  description: "npm"
76526
76526
  };
76527
76527
  }