grg-kit-cli 0.6.4 → 0.6.5
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/bin/grg.js +2 -1
- package/package.json +1 -1
package/bin/grg.js
CHANGED
|
@@ -5,13 +5,14 @@ const { add } = require('../commands/add');
|
|
|
5
5
|
const { list } = require('../commands/list');
|
|
6
6
|
const { init } = require('../commands/init');
|
|
7
7
|
const { llmPrompts } = require('../commands/llm-setup');
|
|
8
|
+
const { version } = require('../package.json');
|
|
8
9
|
|
|
9
10
|
const program = new Command();
|
|
10
11
|
|
|
11
12
|
program
|
|
12
13
|
.name('grg')
|
|
13
14
|
.description('GRG Kit CLI - Initialize your Angular project with GRG Kit components and add blocks')
|
|
14
|
-
.version(
|
|
15
|
+
.version(version);
|
|
15
16
|
|
|
16
17
|
// Init command - sets up GRG Kit in existing Angular project
|
|
17
18
|
program
|