@done-coding/cli 0.15.2-alpha.0 → 0.15.3
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/es/cli.mjs +1 -1
- package/package.json +11 -11
- package/types/cli.d.ts +1 -2
- package/types/index.d.ts +44 -7
- package/types/postinstall.d.ts +1 -1
- package/types/injectInfo.json.d.ts +0 -7
- package/types/main.d.ts +0 -6
package/es/cli.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import { crateAsSubcommand as t } from "@done-coding/cli-config";
|
|
|
10
10
|
import { createMainCommand as e } from "@done-coding/cli-utils";
|
|
11
11
|
const d = {
|
|
12
12
|
name: "@done-coding/cli",
|
|
13
|
-
version: "0.15.
|
|
13
|
+
version: "0.15.3",
|
|
14
14
|
description: "done-coding命令行工具"
|
|
15
15
|
}, { version: i, description: u } = d, b = {
|
|
16
16
|
usage: "$0 <command> [options]",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@done-coding/cli",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.3",
|
|
4
4
|
"description": "done-coding命令行工具",
|
|
5
5
|
"private": false,
|
|
6
6
|
"module": "es/cli.mjs",
|
|
@@ -53,15 +53,15 @@
|
|
|
53
53
|
"node": ">=18.0.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@done-coding/cli-component": "^0.3.
|
|
57
|
-
"@done-coding/cli-config": "^0.1.
|
|
58
|
-
"@done-coding/cli-extract": "^0.1.
|
|
59
|
-
"@done-coding/cli-git": "^0.6.
|
|
60
|
-
"@done-coding/cli-inject": "^0.5.
|
|
61
|
-
"@done-coding/cli-publish": "^0.7.
|
|
62
|
-
"@done-coding/cli-template": "^0.7.
|
|
63
|
-
"@done-coding/cli-utils": "^0.7.
|
|
64
|
-
"create-done-coding": "^0.11.
|
|
56
|
+
"@done-coding/cli-component": "^0.3.10",
|
|
57
|
+
"@done-coding/cli-config": "^0.1.2",
|
|
58
|
+
"@done-coding/cli-extract": "^0.1.10",
|
|
59
|
+
"@done-coding/cli-git": "^0.6.2",
|
|
60
|
+
"@done-coding/cli-inject": "^0.5.10",
|
|
61
|
+
"@done-coding/cli-publish": "^0.7.2",
|
|
62
|
+
"@done-coding/cli-template": "^0.7.10",
|
|
63
|
+
"@done-coding/cli-utils": "^0.7.1",
|
|
64
|
+
"create-done-coding": "^0.11.9"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "299ab3991d6842c83d65816dfba6efd175aa885a"
|
|
67
67
|
}
|
package/types/cli.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export {};
|
|
1
|
+
export { }
|
package/types/index.d.ts
CHANGED
|
@@ -1,7 +1,44 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { handler as componentHandler } from '@done-coding/cli-component';
|
|
2
|
+
import { crateAsSubcommand as configComponentCommand } from '@done-coding/cli-config';
|
|
3
|
+
import { handler as configHandler } from '@done-coding/cli-config';
|
|
4
|
+
import { crateAsSubcommand as createComponentCommand } from '@done-coding/cli-component';
|
|
5
|
+
import { crateAsSubcommand as createCreateCommand } from 'create-done-coding';
|
|
6
|
+
import { crateAsSubcommand as createExtractCommand } from '@done-coding/cli-extract';
|
|
7
|
+
import { handler as createHandler } from 'create-done-coding';
|
|
8
|
+
import { crateAsSubcommand as createInjectCommand } from '@done-coding/cli-inject';
|
|
9
|
+
import { crateAsSubcommand as createPublishCommand } from '@done-coding/cli-publish';
|
|
10
|
+
import { crateAsSubcommand as createTemplateCommand } from '@done-coding/cli-template';
|
|
11
|
+
import { handler as extractHandler } from '@done-coding/cli-extract';
|
|
12
|
+
import { handler as injectHandler } from '@done-coding/cli-inject';
|
|
13
|
+
import { handler as publishHandler } from '@done-coding/cli-publish';
|
|
14
|
+
import { handler as templateHandler } from '@done-coding/cli-template';
|
|
15
|
+
|
|
16
|
+
export { componentHandler }
|
|
17
|
+
|
|
18
|
+
export { configComponentCommand }
|
|
19
|
+
|
|
20
|
+
export { configHandler }
|
|
21
|
+
|
|
22
|
+
export { createComponentCommand }
|
|
23
|
+
|
|
24
|
+
export { createCreateCommand }
|
|
25
|
+
|
|
26
|
+
export { createExtractCommand }
|
|
27
|
+
|
|
28
|
+
export { createHandler }
|
|
29
|
+
|
|
30
|
+
export { createInjectCommand }
|
|
31
|
+
|
|
32
|
+
export { createPublishCommand }
|
|
33
|
+
|
|
34
|
+
export { createTemplateCommand }
|
|
35
|
+
|
|
36
|
+
export { extractHandler }
|
|
37
|
+
|
|
38
|
+
export { injectHandler }
|
|
39
|
+
|
|
40
|
+
export { publishHandler }
|
|
41
|
+
|
|
42
|
+
export { templateHandler }
|
|
43
|
+
|
|
44
|
+
export { }
|
package/types/postinstall.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
export { }
|