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.
Files changed (2) hide show
  1. package/bin/grg.js +2 -1
  2. 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('0.5.0');
15
+ .version(version);
15
16
 
16
17
  // Init command - sets up GRG Kit in existing Angular project
17
18
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grg-kit-cli",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "CLI tool for pulling GRG Kit resources into your Angular project",
5
5
  "main": "index.js",
6
6
  "bin": {