@promptowl/contextnest-cli 0.3.0 → 0.3.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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -33051,7 +33051,7 @@ function buildTreeLines(paths) {
|
|
|
33051
33051
|
|
|
33052
33052
|
// src/index.ts
|
|
33053
33053
|
var program = new Command();
|
|
33054
|
-
program.name("ctx").description("Context Nest CLI \u2014 manage structured, versioned context vaults").version("0.1
|
|
33054
|
+
program.name("ctx").description("Context Nest CLI \u2014 manage structured, versioned context vaults").version("0.3.1");
|
|
33055
33055
|
function getVaultRoot() {
|
|
33056
33056
|
return process.env.CONTEXTNEST_VAULT_PATH || process.cwd();
|
|
33057
33057
|
}
|
|
@@ -33150,7 +33150,7 @@ ${chalk.dim("\u2500".repeat(60))}`);
|
|
|
33150
33150
|
tags: (n.content.match(/^tags:\s*\[(.+)\]$/m)?.[1] || "").split(",").map((t) => t.trim()).filter(Boolean)
|
|
33151
33151
|
})),
|
|
33152
33152
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
33153
|
-
cliVersion: program.version() || "0.
|
|
33153
|
+
cliVersion: program.version() || "0.3.0"
|
|
33154
33154
|
});
|
|
33155
33155
|
openInBrowser(welcomePath);
|
|
33156
33156
|
console.log(` ${chalk.dim("Opened welcome page in browser: .context/welcome.html")}
|
|
@@ -33192,7 +33192,7 @@ This vault was initialized without a starter recipe. To help the user get starte
|
|
|
33192
33192
|
starterDisplayName: null,
|
|
33193
33193
|
nodes: [],
|
|
33194
33194
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
33195
|
-
cliVersion: program.version() || "0.
|
|
33195
|
+
cliVersion: program.version() || "0.3.0"
|
|
33196
33196
|
});
|
|
33197
33197
|
openInBrowser(welcomePath);
|
|
33198
33198
|
console.log(` ${chalk.dim("Opened welcome page in browser: .context/welcome.html")}
|
|
@@ -33756,7 +33756,7 @@ program.command("welcome").description("Regenerate and open the vault welcome pa
|
|
|
33756
33756
|
tags: (d.frontmatter.tags || []).map((t) => t.replace(/^#/, ""))
|
|
33757
33757
|
})),
|
|
33758
33758
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
33759
|
-
cliVersion: program.version() || "0.
|
|
33759
|
+
cliVersion: program.version() || "0.3.0"
|
|
33760
33760
|
});
|
|
33761
33761
|
console.log(chalk.green(`Generated welcome page: .context/welcome.html`));
|
|
33762
33762
|
console.log(` ${docs.length} documents across ${new Set(docs.map((d) => d.id.split("/")[0])).size} folders`);
|