rl-rockcli 0.0.5 → 0.0.6

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/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -20,7 +20,6 @@ const LOGO = `
20
20
  ██╔══██╗██║ ██║██║ ██╔═██╗ ██║ ██║ ██║
21
21
  ██║ ██║╚██████╔╝╚██████╗██║ ██╗╚██████╗███████╗██║
22
22
  ╚═╝ ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝
23
- Open Source
24
23
  `;
25
24
 
26
25
  yargs(hideBin(process.argv))
@@ -32,7 +31,7 @@ yargs(hideBin(process.argv))
32
31
  .strict()
33
32
  .alias('h', 'help')
34
33
  .alias('v', 'version')
35
- .version('0.1.0')
34
+ .version(require('./package.json').version)
36
35
  .help()
37
36
  .wrap(null)
38
37
  .parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rl-rockcli",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Open-source ROCK CLI - Sandbox and Log management tool",
5
5
  "bin": {
6
6
  "rockcli": "./index.js"