create-done-coding 0.11.27-alpha.0 → 0.12.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/README.md +2 -2
- package/es/cli.mjs +1 -1
- package/es/index-2fb632d3.js +4384 -0
- package/es/index.mjs +2 -2
- package/package.json +6 -6
- package/types/index.d.ts +2 -2
- package/es/index-5802775e.js +0 -4005
- package/types/mcp/server-config.d.ts +0 -7
- package/types/mcp/server.d.ts +0 -2
- package/types/mcp-config.d.ts +0 -7
- package/types/mcp-server.d.ts +0 -1
- package/types/mcp.d.ts +0 -2
- package/types/template.json.d.ts +0 -156
package/es/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { F as s, G as t, S as d, e as c, a as p, b as u, h as l, d as b, i as f } from "./index-
|
|
2
|
+
import { F as s, G as t, S as d, e as c, a as p, b as u, h as l, d as b, i as f } from "./index-2fb632d3.js";
|
|
3
3
|
import "@done-coding/cli-utils";
|
|
4
4
|
import "node:fs";
|
|
5
5
|
import "node:path";
|
|
@@ -10,7 +10,7 @@ export {
|
|
|
10
10
|
t as GitRemoteRepoAliasNameEnum,
|
|
11
11
|
d as SubcommandEnum,
|
|
12
12
|
c as commandCliInfo,
|
|
13
|
-
p as
|
|
13
|
+
p as createAsSubcommand,
|
|
14
14
|
u as createCommandCliInfo,
|
|
15
15
|
l as createHandler,
|
|
16
16
|
b as handler,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-done-coding",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "项目创建命令行工具",
|
|
5
5
|
"module": "es/index.mjs",
|
|
6
6
|
"type": "module",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"sideEffects": false,
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@done-coding/cli-inject": "0.
|
|
40
|
+
"@done-coding/cli-inject": "0.6.0",
|
|
41
41
|
"@types/node": "^18.0.0",
|
|
42
42
|
"@types/yargs": "^17.0.28",
|
|
43
43
|
"typescript": "^5.8.3",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"vite-plugin-dts": "^3.6.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@done-coding/cli-git": "0.
|
|
49
|
-
"@done-coding/cli-template": "0.
|
|
50
|
-
"@done-coding/cli-utils": "0.
|
|
48
|
+
"@done-coding/cli-git": "0.7.0",
|
|
49
|
+
"@done-coding/cli-template": "0.9.0",
|
|
50
|
+
"@done-coding/cli-utils": "0.9.0"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=18.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "d72c025c7c59964ef0617891bec9e34df015bd47"
|
|
56
56
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { SubCliInfo } from '@done-coding/cli-utils';
|
|
|
6
6
|
export declare const commandCliInfo: Omit<CliInfo, "usage">;
|
|
7
7
|
|
|
8
8
|
/** 作为子命令创建 */
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const createAsSubcommand: () => CommandModule<{}, {}>;
|
|
10
10
|
|
|
11
11
|
export declare const createCommandCliInfo: SubCliInfo;
|
|
12
12
|
|
|
@@ -120,7 +120,7 @@ export declare const handler: (command: SubcommandEnum, argv: CliHandlerArgv<any
|
|
|
120
120
|
|
|
121
121
|
export declare const injectInfo: {
|
|
122
122
|
"name": "create-done-coding",
|
|
123
|
-
"version": "0.
|
|
123
|
+
"version": "0.12.0",
|
|
124
124
|
"description": "项目创建命令行工具",
|
|
125
125
|
"bin": {
|
|
126
126
|
"create-done-coding": "es/cli.mjs"
|