@cerefox/memory 0.9.8 → 0.9.9
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 +7 -1
- package/dist/frontend/assets/{index-gXiCjcrG.css → index-Asx5wD7g.css} +1 -1
- package/dist/frontend/assets/{index-D5nl8fwi.js → index-h6ttxlbC.js} +30 -30
- package/dist/frontend/assets/index-h6ttxlbC.js.map +1 -0
- package/dist/frontend/index.html +2 -2
- package/docs/guides/quickstart.md +19 -2
- package/package.json +1 -1
- package/dist/frontend/assets/index-D5nl8fwi.js.map +0 -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.9";
|
|
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
|
}
|