omnikey-cli 1.0.8 → 1.0.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/index.js CHANGED
@@ -47,7 +47,6 @@ program
47
47
  .command('status')
48
48
  .description('Show status of Omnikey daemon (lsof on configured port)')
49
49
  .action(status_1.statusCmd);
50
- program.parseAsync(process.argv);
51
50
  // Add logs command
52
51
  program
53
52
  .command('logs')
@@ -57,3 +56,4 @@ program
57
56
  const lines = Number(options.lines) || 50;
58
57
  (0, showLogs_1.showLogs)(lines);
59
58
  });
59
+ program.parseAsync(process.argv);
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
7
- "version": "1.0.8",
7
+ "version": "1.0.9",
8
8
  "description": "CLI for onboarding users to Omnikey AI and configuring OPENAI_API_KEY. Use Yarn for install/build.",
9
9
  "engines": {
10
10
  "node": ">=14.0.0",
package/src/index.ts CHANGED
@@ -56,8 +56,6 @@ program
56
56
  .description('Show status of Omnikey daemon (lsof on configured port)')
57
57
  .action(statusCmd);
58
58
 
59
- program.parseAsync(process.argv);
60
-
61
59
  // Add logs command
62
60
  program
63
61
  .command('logs')
@@ -67,3 +65,5 @@ program
67
65
  const lines = Number(options.lines) || 50;
68
66
  showLogs(lines);
69
67
  });
68
+
69
+ program.parseAsync(process.argv);