@tsed/cli 7.0.0-beta.6 → 7.0.0-beta.7
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/lib/esm/commands/init/config/FeaturesPrompt.js +6 -7
- package/lib/esm/commands/init/config/InitSchema.js +331 -302
- package/lib/esm/commands/init/prompts/getFeaturesPrompt.js +1 -1
- package/lib/esm/commands/mcp/resources/index.js +2 -1
- package/lib/esm/commands/mcp/resources/initOptionsResource.js +93 -0
- package/lib/esm/commands/mcp/schema/InitMCPSchema.js +1 -1
- package/lib/esm/commands/mcp/tools/index.js +1 -2
- package/lib/esm/commands/mcp/tools/initProjectTool.js +1 -1
- package/lib/esm/processors/transformConfigFile.js +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/commands/init/config/FeaturesPrompt.d.ts +1 -7
- package/lib/types/commands/mcp/resources/initOptionsResource.d.ts +1 -0
- package/lib/types/commands/mcp/tools/index.d.ts +344 -1
- package/package.json +4 -4
|
@@ -363,14 +363,13 @@ export const FeaturesMap = {
|
|
|
363
363
|
checked: false
|
|
364
364
|
}
|
|
365
365
|
};
|
|
366
|
-
export const FrameworksPrompt = {
|
|
367
|
-
message: "Choose the target Framework:",
|
|
368
|
-
type: "list",
|
|
369
|
-
name: "platform",
|
|
370
|
-
choices: [PlatformType.EXPRESS, PlatformType.KOA, PlatformType.FASTIFY]
|
|
371
|
-
};
|
|
372
366
|
export const FeaturesPrompt = (availableRuntimes, availablePackageManagers) => [
|
|
373
|
-
|
|
367
|
+
{
|
|
368
|
+
message: "Choose the target Framework:",
|
|
369
|
+
type: "list",
|
|
370
|
+
name: "platform",
|
|
371
|
+
choices: [PlatformType.EXPRESS, PlatformType.KOA, PlatformType.FASTIFY]
|
|
372
|
+
},
|
|
374
373
|
{
|
|
375
374
|
message: "Choose the architecture for your project:",
|
|
376
375
|
type: "list",
|