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 CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { c as m } from "./index-cb50bb18.js";
2
+ import { c as m } from "./index-4f7f06f3.js";
3
3
  import "@done-coding/cli-utils";
4
4
  import "node:fs";
5
5
  import "node:path";
@@ -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.25",
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-cb50bb18.js";
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.25",
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": "d90f437c0a716f3e62bd92a221341838710869ad"
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.25",
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
  }