@tikkhun/cli-core 0.0.19 → 0.0.21
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/dist/CommandManager.d.mts +1 -1
- package/dist/CommandManager.d.ts +1 -1
- package/dist/CommandManager.js +55 -2
- package/dist/CommandManager.js.map +1 -1
- package/dist/CommandManager.mjs +55 -2
- package/dist/CommandManager.mjs.map +1 -1
- package/dist/command/ArgsCommand.js.map +1 -1
- package/dist/command/ArgsCommand.mjs.map +1 -1
- package/dist/command/ConfigCommand.js +55 -2
- package/dist/command/ConfigCommand.js.map +1 -1
- package/dist/command/ConfigCommand.mjs +55 -2
- package/dist/command/ConfigCommand.mjs.map +1 -1
- package/dist/command/PromptsCommand.d.mts +1 -1
- package/dist/command/PromptsCommand.d.ts +1 -1
- package/dist/command/PromptsCommand.js +1 -1
- package/dist/command/PromptsCommand.js.map +1 -1
- package/dist/command/PromptsCommand.mjs +1 -1
- package/dist/command/PromptsCommand.mjs.map +1 -1
- package/dist/command/command.interface.d.mts +8 -2
- package/dist/command/command.interface.d.ts +8 -2
- package/dist/command/command.interface.js +1 -1
- package/dist/command/command.interface.js.map +1 -1
- package/dist/command/command.interface.mjs +1 -1
- package/dist/command/command.interface.mjs.map +1 -1
- package/dist/command/index.js +55 -2
- package/dist/command/index.js.map +1 -1
- package/dist/command/index.mjs +55 -2
- package/dist/command/index.mjs.map +1 -1
- package/dist/index.js +55 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +55 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tikkhun/cli-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"default": "./dist/index.mjs"
|
|
13
13
|
},
|
|
14
14
|
"require": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
},
|
|
@@ -27,20 +27,21 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "ISC",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@inquirer/prompts": "^7.
|
|
31
|
-
"commander": "^
|
|
30
|
+
"@inquirer/prompts": "^7.5.1",
|
|
31
|
+
"commander": "^14.0.0",
|
|
32
32
|
"fs-extra": "^11.3.0",
|
|
33
33
|
"lodash": "^4.17.21",
|
|
34
|
-
"@tikkhun/
|
|
34
|
+
"@tikkhun/config-loader": "^0.0.1",
|
|
35
|
+
"@tikkhun/utils-core": "^0.0.17",
|
|
35
36
|
"@tikkhun/logger": "^1.0.8"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
39
|
"@types/fs-extra": "^11.0.4",
|
|
39
|
-
"@types/lodash": "^4.17.
|
|
40
|
-
"@types/node": "^22.
|
|
41
|
-
"tsup": "^8.
|
|
42
|
-
"tsx": "^4.19.
|
|
43
|
-
"vitest": "^3.
|
|
40
|
+
"@types/lodash": "^4.17.17",
|
|
41
|
+
"@types/node": "^22.15.21",
|
|
42
|
+
"tsup": "^8.5.0",
|
|
43
|
+
"tsx": "^4.19.4",
|
|
44
|
+
"vitest": "^3.1.4"
|
|
44
45
|
},
|
|
45
46
|
"scripts": {
|
|
46
47
|
"build": "tsup",
|