@dzhng/crm.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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -3258,7 +3258,7 @@ function ensureDir2(dir) {
3258
3258
  function getDaemonArgs() {
3259
3259
  const script = process.argv[1];
3260
3260
  if (script && /\.[tj]s$/.test(script)) {
3261
- return ["run", script];
3261
+ return [script];
3262
3262
  }
3263
3263
  return [];
3264
3264
  }
@@ -5420,7 +5420,7 @@ if (process.argv[1]?.endsWith("fuse-daemon.ts")) {
5420
5420
 
5421
5421
  // src/cli.ts
5422
5422
  var program = new Command;
5423
- program.name("crm").description("Headless CLI-first CRM").version("0.3.0");
5423
+ program.name("crm").description("Headless CLI-first CRM").version("0.3.1");
5424
5424
  program.exitOverride();
5425
5425
  registerContactCommands(program);
5426
5426
  registerCompanyCommands(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhng/crm.cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Headless CLI-first CRM",
5
5
  "author": "David Zhang",
6
6
  "license": "MIT",