@done-coding/cli 0.14.7-alpha.1 → 0.15.0-alpha.0
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 +2 -2
- package/es/index.mjs +11 -11
- package/package.json +15 -13
- package/types/index.d.ts +1 -1
- package/types/injectInfo.json.d.ts +1 -1
package/es/cli.mjs
CHANGED
|
@@ -6,11 +6,11 @@ import { crateAsSubcommand as c } from "create-done-coding";
|
|
|
6
6
|
import { crateAsSubcommand as n } from "@done-coding/cli-publish";
|
|
7
7
|
import { crateAsSubcommand as r } from "@done-coding/cli-template";
|
|
8
8
|
import { crateAsSubcommand as s } from "@done-coding/cli-component";
|
|
9
|
-
import { crateAsSubcommand as t } from "@done-coding/cli-
|
|
9
|
+
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.
|
|
13
|
+
version: "0.15.0-alpha.0",
|
|
14
14
|
description: "done-coding命令行工具"
|
|
15
15
|
}, { version: i, description: u } = d, b = {
|
|
16
16
|
usage: "$0 <command> [options]",
|
package/es/index.mjs
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { crateAsSubcommand as r, handler as n } from "@done-coding/cli-extract";
|
|
3
|
-
import { crateAsSubcommand as
|
|
3
|
+
import { crateAsSubcommand as o, handler as t } from "@done-coding/cli-inject";
|
|
4
4
|
import { crateAsSubcommand as c, handler as s } from "create-done-coding";
|
|
5
5
|
import { crateAsSubcommand as p, handler as b } from "@done-coding/cli-publish";
|
|
6
|
-
import { crateAsSubcommand as
|
|
7
|
-
import { handler as
|
|
8
|
-
import { crateAsSubcommand as S, handler as i } from "@done-coding/cli-
|
|
6
|
+
import { crateAsSubcommand as C, handler as f } from "@done-coding/cli-template";
|
|
7
|
+
import { handler as x, crateAsSubcommand as A } from "@done-coding/cli-component";
|
|
8
|
+
import { crateAsSubcommand as S, handler as i } from "@done-coding/cli-config";
|
|
9
9
|
export {
|
|
10
|
-
|
|
10
|
+
x as componentHandler,
|
|
11
|
+
S as configComponentCommand,
|
|
12
|
+
i as configHandler,
|
|
11
13
|
A as createComponentCommand,
|
|
12
14
|
c as createCreateCommand,
|
|
13
|
-
S as createEngineCommand,
|
|
14
15
|
r as createExtractCommand,
|
|
15
16
|
s as createHandler,
|
|
16
|
-
|
|
17
|
+
o as createInjectCommand,
|
|
17
18
|
p as createPublishCommand,
|
|
18
|
-
|
|
19
|
-
i as engineHandler,
|
|
19
|
+
C as createTemplateCommand,
|
|
20
20
|
n as extractHandler,
|
|
21
|
-
|
|
21
|
+
t as injectHandler,
|
|
22
22
|
b as publishHandler,
|
|
23
|
-
|
|
23
|
+
f as templateHandler
|
|
24
24
|
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@done-coding/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0-alpha.0",
|
|
4
4
|
"description": "done-coding命令行工具",
|
|
5
5
|
"private": false,
|
|
6
6
|
"module": "es/cli.mjs",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "types/cli.d.ts",
|
|
9
|
-
"bin":
|
|
9
|
+
"bin": {
|
|
10
|
+
"done-coding": "es/cli.mjs"
|
|
11
|
+
},
|
|
10
12
|
"exports": {
|
|
11
13
|
".": {
|
|
12
14
|
"import": "./es/cli.mjs"
|
|
@@ -48,15 +50,15 @@
|
|
|
48
50
|
"node": ">=18.0.0"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
|
-
"@done-coding/cli-component": "^0.3.8-alpha.
|
|
52
|
-
"@done-coding/cli-
|
|
53
|
-
"@done-coding/cli-extract": "^0.1.8-alpha.
|
|
54
|
-
"@done-coding/cli-git": "^0.
|
|
55
|
-
"@done-coding/cli-inject": "^0.5.8-alpha.
|
|
56
|
-
"@done-coding/cli-publish": "^0.7.0-alpha.
|
|
57
|
-
"@done-coding/cli-template": "^0.7.8-alpha.
|
|
58
|
-
"@done-coding/cli-utils": "^0.
|
|
59
|
-
"create-done-coding": "^0.11.7-alpha.
|
|
60
|
-
},
|
|
61
|
-
"gitHead": "
|
|
53
|
+
"@done-coding/cli-component": "^0.3.8-alpha.2",
|
|
54
|
+
"@done-coding/cli-config": "^0.1.0-alpha.0",
|
|
55
|
+
"@done-coding/cli-extract": "^0.1.8-alpha.1",
|
|
56
|
+
"@done-coding/cli-git": "^0.6.0-alpha.0",
|
|
57
|
+
"@done-coding/cli-inject": "^0.5.8-alpha.1",
|
|
58
|
+
"@done-coding/cli-publish": "^0.7.0-alpha.1",
|
|
59
|
+
"@done-coding/cli-template": "^0.7.8-alpha.2",
|
|
60
|
+
"@done-coding/cli-utils": "^0.7.0-alpha.0",
|
|
61
|
+
"create-done-coding": "^0.11.7-alpha.1"
|
|
62
|
+
},
|
|
63
|
+
"gitHead": "ff1616738586a268b50f46dce762774fa5fa6d52"
|
|
62
64
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export { crateAsSubcommand as createCreateCommand, handler as createHandler, } f
|
|
|
4
4
|
export { crateAsSubcommand as createPublishCommand, handler as publishHandler, } from "@done-coding/cli-publish";
|
|
5
5
|
export { crateAsSubcommand as createTemplateCommand, handler as templateHandler, } from "@done-coding/cli-template";
|
|
6
6
|
export { crateAsSubcommand as createComponentCommand, handler as componentHandler, } from "@done-coding/cli-component";
|
|
7
|
-
export { crateAsSubcommand as
|
|
7
|
+
export { crateAsSubcommand as configComponentCommand, handler as configHandler, } from "@done-coding/cli-config";
|