kuhul-es 1.0.14 → 1.0.16
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/kuhul-es.js +2 -2
- package/package.json +2 -3
package/bin/kuhul-es.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
const fs = require('fs');
|
|
10
10
|
const path = require('path');
|
|
11
11
|
const crypto = require('crypto');
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
const { program } = require('commander');
|
|
14
14
|
|
|
15
15
|
// -----------------------------------------------------------------------------
|
|
@@ -102,7 +102,7 @@ main();
|
|
|
102
102
|
JSON.stringify(packageJson, null, 2)
|
|
103
103
|
);
|
|
104
104
|
|
|
105
|
-
console.log(
|
|
105
|
+
console.log(`✓ Project created: ${name}`);
|
|
106
106
|
console.log(chalk.cyan(` cd ${name}`));
|
|
107
107
|
console.log(chalk.cyan(` npm install`));
|
|
108
108
|
console.log(chalk.cyan(` npm start`));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kuhul-es",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"kuhul-es": "bin/kuhul-es.js"
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"node": ">=14"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"commander": "^11.0.0"
|
|
24
|
-
"chalk": "^5.3.0"
|
|
23
|
+
"commander": "^11.0.0"
|
|
25
24
|
}
|
|
26
25
|
}
|