g360-cli 1.1.0 → 1.1.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/package.json +7 -2
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "g360-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI tool for bootstrapping G360 ecosystem projects",
5
5
  "type": "module",
6
6
  "main": "src/cli.js",
@@ -11,7 +11,12 @@
11
11
  "prepublishOnly": "node -e \"console.log('Use: npm install -g g360-cli')\"",
12
12
  "test": "echo \"No tests configured\""
13
13
  },
14
- "keywords": ["g360", "cli", "scaffolding", "generator"],
14
+ "keywords": [
15
+ "g360",
16
+ "cli",
17
+ "scaffolding",
18
+ "generator"
19
+ ],
15
20
  "author": "Carlos Cusi",
16
21
  "license": "MIT",
17
22
  "dependencies": {
package/src/cli.js CHANGED
@@ -18,7 +18,7 @@ const program = new Command();
18
18
  program
19
19
  .name('g360')
20
20
  .description('CLI tool for bootstrapping G360 ecosystem projects')
21
- .version('1.0.0');
21
+ .version('1.1.1');
22
22
 
23
23
  program
24
24
  .command('init')