create-done-coding 0.11.25 → 0.11.26-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 +1 -1
- package/es/{index-cb50bb18.js → index-4f7f06f3.js} +1 -1
- package/es/index.mjs +1 -1
- package/package.json +2 -2
- package/types/index.d.ts +1 -14
package/es/cli.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { getConfigPath as zo, batchCompileHandler as Vo, MODULE_DEFAULT_CONFIG_R
|
|
|
6
6
|
import { getTargetRepoUrl as Qo } from "@done-coding/cli-git";
|
|
7
7
|
const ie = {
|
|
8
8
|
name: "create-done-coding",
|
|
9
|
-
version: "0.11.
|
|
9
|
+
version: "0.11.26-alpha.0",
|
|
10
10
|
description: "项目创建命令行工具",
|
|
11
11
|
bin: {
|
|
12
12
|
"create-done-coding": "es/cli.mjs"
|
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-4f7f06f3.js";
|
|
3
3
|
import "@done-coding/cli-utils";
|
|
4
4
|
import "node:fs";
|
|
5
5
|
import "node:path";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-done-coding",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.26-alpha.0",
|
|
4
4
|
"description": "项目创建命令行工具",
|
|
5
5
|
"module": "es/index.mjs",
|
|
6
6
|
"type": "module",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=18.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "d82a176b550e6da106b93d811f16789ef2f142b4"
|
|
56
56
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { CliHandlerArgv } from '@done-coding/cli-utils';
|
|
2
2
|
import { CliInfo } from '@done-coding/cli-utils';
|
|
3
3
|
import { CommandModule } from 'yargs';
|
|
4
|
-
import { McpCommonToolParams } from '@done-coding/mcp-utils';
|
|
5
4
|
import type { SubCliInfo } from '@done-coding/cli-utils';
|
|
6
5
|
|
|
7
6
|
export declare const commandCliInfo: Omit<CliInfo, "usage">;
|
|
@@ -121,7 +120,7 @@ export declare const handler: (command: SubcommandEnum, argv: CliHandlerArgv<any
|
|
|
121
120
|
|
|
122
121
|
export declare const injectInfo: {
|
|
123
122
|
"name": "create-done-coding",
|
|
124
|
-
"version": "0.11.
|
|
123
|
+
"version": "0.11.26-alpha.0",
|
|
125
124
|
"description": "项目创建命令行工具",
|
|
126
125
|
"bin": {
|
|
127
126
|
"create-done-coding": "es/cli.mjs"
|
|
@@ -132,18 +131,6 @@ export declare const injectInfo: {
|
|
|
132
131
|
}
|
|
133
132
|
};
|
|
134
133
|
|
|
135
|
-
/**
|
|
136
|
-
* mcp项目创建工具参数
|
|
137
|
-
*/
|
|
138
|
-
export declare interface McpCreateToolParams extends McpCommonToolParams {
|
|
139
|
-
/** 项目名称 */
|
|
140
|
-
[FormNameEnum.PROJECT_NAME]: string;
|
|
141
|
-
/** 模板仓库地址 */
|
|
142
|
-
[FormNameEnum.TEMPLATE_GIT_PATH]: string;
|
|
143
|
-
/** 模板仓库分支 */
|
|
144
|
-
[FormNameEnum.TEMPLATE_GIT_BRANCH]?: string;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
134
|
export declare enum SubcommandEnum {
|
|
148
135
|
CREATE = "create"
|
|
149
136
|
}
|