kuhul-es 1.0.5 → 1.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/bin/kuhul-es.js +3 -6
  2. package/package.json +2 -2
package/bin/kuhul-es.js CHANGED
@@ -1,9 +1,6 @@
1
- # Create bin directory
2
- New-Item -ItemType Directory -Force -Path bin
3
-
4
- # Create the CLI file
5
- @'
6
1
  #!/usr/bin/env node
2
+ // KUHUL-ES CLI
3
+ 'use strict';
7
4
 
8
5
  console.log(`
9
6
  ╔══════════════════════════════════════╗
@@ -17,7 +14,7 @@ const { program } = require('commander');
17
14
  program
18
15
  .name('kuhul-es')
19
16
  .description('KUHUL-ES - The Trojan Horse for KUHUL semantics')
20
- .version('1.0.0');
17
+ .version('1.0.6');
21
18
 
22
19
  program
23
20
  .command('init [project-name]')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
- {
1
+ {
2
2
  "name": "kuhul-es",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "src/index.js",
5
5
  "bin": {
6
6
  "kuhul-es": "bin/kuhul-es.js"