@dzhng/crm.cli 0.3.2 → 0.3.3
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/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4423,7 +4423,7 @@ async function _handleGetattr(db, p, stages) {
|
|
|
4423
4423
|
].includes(p)) {
|
|
4424
4424
|
return { type: "dir" };
|
|
4425
4425
|
}
|
|
4426
|
-
if (p === "pipeline.json" || p === "tags.json") {
|
|
4426
|
+
if (p === "pipeline.json" || p === "tags.json" || p === "llm.txt") {
|
|
4427
4427
|
return { type: "file" };
|
|
4428
4428
|
}
|
|
4429
4429
|
const parts = p.split("/");
|
|
@@ -5425,7 +5425,7 @@ if (process.argv[1]?.endsWith("fuse-daemon.ts")) {
|
|
|
5425
5425
|
|
|
5426
5426
|
// src/cli.ts
|
|
5427
5427
|
var program = new Command;
|
|
5428
|
-
program.name("crm").description("Headless CLI-first CRM").version("0.3.
|
|
5428
|
+
program.name("crm").description("Headless CLI-first CRM").version("0.3.3");
|
|
5429
5429
|
program.exitOverride();
|
|
5430
5430
|
registerContactCommands(program);
|
|
5431
5431
|
registerCompanyCommands(program);
|