slackhive 0.1.30 → 0.1.31
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17,11 +17,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
const commander_1 = require("commander");
|
|
18
18
|
const init_1 = require("./commands/init");
|
|
19
19
|
const manage_1 = require("./commands/manage");
|
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
21
|
+
const { version } = require('../package.json');
|
|
20
22
|
const program = new commander_1.Command();
|
|
21
23
|
program
|
|
22
24
|
.name('slackhive')
|
|
23
25
|
.description('CLI to install and manage SlackHive — AI agent teams on Slack')
|
|
24
|
-
.version(
|
|
26
|
+
.version(version);
|
|
25
27
|
program
|
|
26
28
|
.command('init')
|
|
27
29
|
.description('Clone SlackHive repo, configure environment, and start services')
|