@cerefox/memory 0.9.8 → 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.
- package/dist/bin/cerefox.js +9 -3
- package/dist/frontend/assets/{index-D5nl8fwi.js → index-AFUS7_0T.js} +30 -30
- package/dist/frontend/assets/{index-D5nl8fwi.js.map → index-AFUS7_0T.js.map} +1 -1
- package/dist/frontend/assets/{index-gXiCjcrG.css → index-Asx5wD7g.css} +1 -1
- package/dist/frontend/index.html +2 -2
- package/docs/guides/quickstart.md +19 -2
- package/package.json +1 -1
package/dist/bin/cerefox.js
CHANGED
|
@@ -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.
|
|
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
|
|
@@ -68117,6 +68117,12 @@ _cerefox() {
|
|
|
68117
68117
|
_cerefox_candidates "$path"
|
|
68118
68118
|
compadd -- \${=REPLY}
|
|
68119
68119
|
}
|
|
68120
|
+
# Self-bootstrap the completion system if no \`compinit\` has run yet (e.g. this
|
|
68121
|
+
# file is sourced from an rc that never initialized completions). No-op when
|
|
68122
|
+
# \`compdef\` already exists, so it never re-runs compinit unnecessarily.
|
|
68123
|
+
if ! whence compdef >/dev/null 2>&1; then
|
|
68124
|
+
autoload -Uz compinit && compinit
|
|
68125
|
+
fi
|
|
68120
68126
|
compdef _cerefox cerefox
|
|
68121
68127
|
`;
|
|
68122
68128
|
}
|
|
@@ -76495,7 +76501,7 @@ function detectRuntime() {
|
|
|
76495
76501
|
if (bin.includes(".bun") || bin.includes("/bun/")) {
|
|
76496
76502
|
return {
|
|
76497
76503
|
command: "bun",
|
|
76498
|
-
args: (v) => ["install", "-g", `@cerefox/memory@${v}`],
|
|
76504
|
+
args: (v) => ["install", "-g", "--no-cache", `@cerefox/memory@${v}`],
|
|
76499
76505
|
description: "Bun"
|
|
76500
76506
|
};
|
|
76501
76507
|
}
|
|
@@ -76515,7 +76521,7 @@ function detectRuntime() {
|
|
|
76515
76521
|
}
|
|
76516
76522
|
return {
|
|
76517
76523
|
command: "npm",
|
|
76518
|
-
args: (v) => ["install", "-g", `@cerefox/memory@${v}`],
|
|
76524
|
+
args: (v) => ["install", "-g", "--prefer-online", `@cerefox/memory@${v}`],
|
|
76519
76525
|
description: "npm"
|
|
76520
76526
|
};
|
|
76521
76527
|
}
|