@tsed/cli 7.0.0-beta.10 → 7.0.0-beta.11
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/generate/GenerateCmd.js +3 -6
- package/lib/esm/commands/init/config/FeaturesPrompt.js +0 -3
- package/lib/esm/templates/command.template.js +5 -3
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/commands/add/AddCmd.d.ts +2 -2
- package/lib/types/commands/generate/GenerateCmd.d.ts +2 -39
- package/lib/types/commands/index.d.ts +6 -6
- package/lib/types/commands/init/InitCmd.d.ts +3 -2
- package/lib/types/commands/init/InitOptionsCmd.d.ts +3 -3
- package/lib/types/commands/mcp/McpCommand.d.ts +3 -3
- package/lib/types/commands/template/CreateTemplateCommand.d.ts +4 -4
- package/lib/types/commands/update/UpdateCmd.d.ts +3 -2
- package/lib/types/templates/agents.template.d.ts +1 -1
- package/lib/types/templates/asyncFactory.template.d.ts +1 -1
- package/lib/types/templates/barrels.template.d.ts +1 -1
- package/lib/types/templates/command.template.d.ts +1 -1
- package/lib/types/templates/config.template.d.ts +1 -1
- package/lib/types/templates/controller.template.d.ts +1 -1
- package/lib/types/templates/decorator.template.d.ts +1 -1
- package/lib/types/templates/docker-compose.template.d.ts +1 -1
- package/lib/types/templates/exception-filter.template.d.ts +1 -1
- package/lib/types/templates/factory.template.d.ts +1 -1
- package/lib/types/templates/index.command.template.d.ts +1 -1
- package/lib/types/templates/index.config.utils.template.d.ts +1 -1
- package/lib/types/templates/index.controller.template.d.ts +1 -1
- package/lib/types/templates/index.logger.template.d.ts +1 -1
- package/lib/types/templates/index.template.d.ts +1 -1
- package/lib/types/templates/interceptor.template.d.ts +1 -1
- package/lib/types/templates/interface.template.d.ts +1 -1
- package/lib/types/templates/middleware.template.d.ts +1 -1
- package/lib/types/templates/model.template.d.ts +1 -1
- package/lib/types/templates/module.template.d.ts +1 -1
- package/lib/types/templates/pipe.template.d.ts +1 -1
- package/lib/types/templates/prisma.service.template.d.ts +1 -1
- package/lib/types/templates/readme.template.d.ts +1 -1
- package/lib/types/templates/repository.template.d.ts +1 -1
- package/lib/types/templates/response-filter.template.d.ts +1 -1
- package/lib/types/templates/server.template.d.ts +1 -1
- package/lib/types/templates/service.template.d.ts +1 -1
- package/lib/types/templates/tsconfig.spec.template.d.ts +1 -1
- package/lib/types/templates/value.template.d.ts +1 -1
- package/lib/types/utils/defineTemplate.d.ts +3 -3
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CliPlugins, type CommandProvider, PackageManagersModule, ProjectPackageJson, type
|
|
1
|
+
import { CliPlugins, type CommandProvider, PackageManagersModule, ProjectPackageJson, type PromptQuestion, type Task } from "@tsed/cli-core";
|
|
2
2
|
export interface AddCmdOptions extends CommandProvider {
|
|
3
3
|
name: string;
|
|
4
4
|
}
|
|
@@ -6,6 +6,6 @@ export declare class AddCmd implements CommandProvider {
|
|
|
6
6
|
protected cliPlugins: CliPlugins;
|
|
7
7
|
protected packageJson: ProjectPackageJson;
|
|
8
8
|
protected packageManagers: PackageManagersModule;
|
|
9
|
-
$prompt(initialOptions: any):
|
|
9
|
+
$prompt(initialOptions: any): PromptQuestion[];
|
|
10
10
|
$exec(ctx: AddCmdOptions): Task[];
|
|
11
11
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type CommandProvider, ProjectPackageJson, type Task } from "@tsed/cli-core";
|
|
1
|
+
import { type CommandProvider, ProjectPackageJson, type PromptQuestion, type Task } from "@tsed/cli-core";
|
|
2
2
|
import type { GenerateCmdContext } from "../../interfaces/GenerateCmdContext.js";
|
|
3
3
|
import { CliProjectService } from "../../services/CliProjectService.js";
|
|
4
4
|
import { CliTemplatesService } from "../../services/CliTemplatesService.js";
|
|
@@ -6,44 +6,7 @@ export declare class GenerateCmd implements CommandProvider {
|
|
|
6
6
|
protected projectPackageJson: ProjectPackageJson;
|
|
7
7
|
protected projectService: CliProjectService;
|
|
8
8
|
protected templates: CliTemplatesService;
|
|
9
|
-
$prompt(data: Partial<GenerateCmdContext>): Promise<
|
|
10
|
-
[x: string]: (import("inquirer").NumberQuestion<GenerateCmdContext> & {
|
|
11
|
-
name?: never;
|
|
12
|
-
}) | (import("inquirer").ListQuestion<GenerateCmdContext> & {
|
|
13
|
-
name?: never;
|
|
14
|
-
}) | (import("inquirer").CheckboxQuestion<GenerateCmdContext> & {
|
|
15
|
-
name?: never;
|
|
16
|
-
}) | (import("inquirer").PasswordQuestion<GenerateCmdContext> & {
|
|
17
|
-
name?: never;
|
|
18
|
-
}) | (import("inquirer").InputQuestion<GenerateCmdContext> & {
|
|
19
|
-
name?: never;
|
|
20
|
-
}) | (import("inquirer").RawListQuestion<GenerateCmdContext> & {
|
|
21
|
-
name?: never;
|
|
22
|
-
}) | (import("inquirer").ExpandQuestion<GenerateCmdContext> & {
|
|
23
|
-
name?: never;
|
|
24
|
-
}) | (import("inquirer").ConfirmQuestion<GenerateCmdContext> & {
|
|
25
|
-
name?: never;
|
|
26
|
-
}) | (import("inquirer").EditorQuestion<GenerateCmdContext> & {
|
|
27
|
-
name?: never;
|
|
28
|
-
}) | undefined;
|
|
29
|
-
} | {
|
|
30
|
-
type: string;
|
|
31
|
-
name: string;
|
|
32
|
-
message: string;
|
|
33
|
-
default: string | undefined;
|
|
34
|
-
when: () => boolean;
|
|
35
|
-
source: (_: any, keyword: string) => {
|
|
36
|
-
name: string;
|
|
37
|
-
value: string;
|
|
38
|
-
}[];
|
|
39
|
-
} | {
|
|
40
|
-
type: string;
|
|
41
|
-
name: string;
|
|
42
|
-
message: string;
|
|
43
|
-
default: ((state: Partial<GenerateCmdContext>) => string) | undefined;
|
|
44
|
-
when: boolean;
|
|
45
|
-
source?: undefined;
|
|
46
|
-
})[]>;
|
|
9
|
+
$prompt(data: Partial<GenerateCmdContext>): Promise<PromptQuestion[]>;
|
|
47
10
|
$mapContext(ctx: Partial<GenerateCmdContext>): GenerateCmdContext;
|
|
48
11
|
$exec(ctx: GenerateCmdContext): Task[];
|
|
49
12
|
}
|
|
@@ -29,12 +29,12 @@ declare const _default: (typeof CreateTemplateCommand | typeof AddCmd | typeof G
|
|
|
29
29
|
} | {
|
|
30
30
|
$prompt: any;
|
|
31
31
|
$exec: any;
|
|
32
|
-
prompt?<T extends import("inquirer").Answers = import("inquirer").Answers>(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
33
|
-
indent: import("@tsed/schema").JsonSchema<number>;
|
|
34
|
-
}>>): import("@tsed/cli-core").QuestionOptions<T> | Promise<import("@tsed/cli-core").QuestionOptions<T>>;
|
|
35
32
|
handler: (data: import("@tsed/schema").PropsToShape<{
|
|
36
33
|
indent: import("@tsed/schema").JsonSchema<number>;
|
|
37
34
|
}>) => import("@tsed/cli-core").Tasks | Promise<import("@tsed/cli-core").Tasks> | any | Promise<any>;
|
|
35
|
+
prompt?(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
36
|
+
indent: import("@tsed/schema").JsonSchema<number>;
|
|
37
|
+
}>>): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
38
38
|
name: string;
|
|
39
39
|
alias?: string;
|
|
40
40
|
description: string;
|
|
@@ -80,12 +80,12 @@ declare const _default: (typeof CreateTemplateCommand | typeof AddCmd | typeof G
|
|
|
80
80
|
} | {
|
|
81
81
|
$prompt: any;
|
|
82
82
|
$exec: any;
|
|
83
|
-
prompt?<T extends import("inquirer").Answers = import("inquirer").Answers>(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
84
|
-
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
85
|
-
}>>): import("@tsed/cli-core").QuestionOptions<T> | Promise<import("@tsed/cli-core").QuestionOptions<T>>;
|
|
86
83
|
handler: (data: import("@tsed/schema").PropsToShape<{
|
|
87
84
|
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
88
85
|
}>) => import("@tsed/cli-core").Tasks | Promise<import("@tsed/cli-core").Tasks> | any | Promise<any>;
|
|
86
|
+
prompt?(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
87
|
+
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
88
|
+
}>>): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
89
89
|
name: string;
|
|
90
90
|
alias?: string;
|
|
91
91
|
description: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { CliExeca, CliFs, CliLoadFile, CliPlugins, type CommandProvider, PackageManagersModule, ProjectPackageJson, type
|
|
1
|
+
import { CliExeca, CliFs, CliLoadFile, CliPlugins, type CommandProvider, PackageManagersModule, ProjectPackageJson, type Task } from "@tsed/cli-core";
|
|
2
|
+
import type { PromptQuestion } from "@tsed/cli-prompts";
|
|
2
3
|
import type { InitCmdContext } from "../../interfaces/index.js";
|
|
3
4
|
import type { InitOptions } from "../../interfaces/InitCmdOptions.js";
|
|
4
5
|
import { PlatformsModule } from "../../platforms/PlatformsModule.js";
|
|
@@ -16,7 +17,7 @@ export declare class InitCmd implements CommandProvider {
|
|
|
16
17
|
protected project: CliProjectService;
|
|
17
18
|
protected execa: CliExeca;
|
|
18
19
|
protected fs: CliFs;
|
|
19
|
-
$prompt(initialOptions: Partial<InitOptions>): Promise<
|
|
20
|
+
$prompt(initialOptions: Partial<InitOptions>): Promise<PromptQuestion[]>;
|
|
20
21
|
$mapContext(ctx: any): InitOptions;
|
|
21
22
|
$exec(ctx: InitOptions): Promise<Task[]>;
|
|
22
23
|
$afterPostInstall(): {
|
|
@@ -23,12 +23,12 @@ export declare const InitOptionsCommand: import("@tsed/cli-core").FactoryTokenPr
|
|
|
23
23
|
} | {
|
|
24
24
|
$prompt: any;
|
|
25
25
|
$exec: any;
|
|
26
|
-
prompt?<T extends import("inquirer").Answers = import("inquirer").Answers>(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
27
|
-
indent: import("@tsed/schema").JsonSchema<number>;
|
|
28
|
-
}>>): import("@tsed/cli-core").QuestionOptions<T> | Promise<import("@tsed/cli-core").QuestionOptions<T>>;
|
|
29
26
|
handler: (data: import("@tsed/schema").PropsToShape<{
|
|
30
27
|
indent: import("@tsed/schema").JsonSchema<number>;
|
|
31
28
|
}>) => import("@tsed/cli-core").Tasks | Promise<import("@tsed/cli-core").Tasks> | any | Promise<any>;
|
|
29
|
+
prompt?(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
30
|
+
indent: import("@tsed/schema").JsonSchema<number>;
|
|
31
|
+
}>>): import("@tsed/cli-core").PromptQuestion[] | Promise<import("@tsed/cli-core").PromptQuestion[]>;
|
|
32
32
|
name: string;
|
|
33
33
|
alias?: string;
|
|
34
34
|
description: string;
|
|
@@ -23,12 +23,12 @@ export declare const McpCommand: import("@tsed/cli-core").FactoryTokenProvider<{
|
|
|
23
23
|
} | {
|
|
24
24
|
$prompt: any;
|
|
25
25
|
$exec: any;
|
|
26
|
-
prompt?<T extends import("inquirer").Answers = import("inquirer").Answers>(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
27
|
-
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
28
|
-
}>>): import("@tsed/cli-core").QuestionOptions<T> | Promise<import("@tsed/cli-core").QuestionOptions<T>>;
|
|
29
26
|
handler: (data: import("@tsed/schema").PropsToShape<{
|
|
30
27
|
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
31
28
|
}>) => import("@tsed/cli-core").Tasks | Promise<import("@tsed/cli-core").Tasks> | any | Promise<any>;
|
|
29
|
+
prompt?(initialOptions: Partial<import("@tsed/schema").PropsToShape<{
|
|
30
|
+
http: import("@tsed/schema").JsonSchema<boolean>;
|
|
31
|
+
}>>): import("@tsed/cli-core").PromptQuestion[] | Promise<import("@tsed/cli-core").PromptQuestion[]>;
|
|
32
32
|
name: string;
|
|
33
33
|
alias?: string;
|
|
34
34
|
description: string;
|
|
@@ -13,7 +13,7 @@ export declare class CreateTemplateCommand implements CommandProvider {
|
|
|
13
13
|
protected projectPackageJson: ProjectPackageJson;
|
|
14
14
|
protected templates: CliTemplatesService;
|
|
15
15
|
$prompt(data: Partial<CreateTemplateCmdContext>): Promise<({
|
|
16
|
-
type:
|
|
16
|
+
type: "list";
|
|
17
17
|
name: string;
|
|
18
18
|
message: string;
|
|
19
19
|
default: string;
|
|
@@ -24,7 +24,7 @@ export declare class CreateTemplateCommand implements CommandProvider {
|
|
|
24
24
|
}[];
|
|
25
25
|
source?: undefined;
|
|
26
26
|
} | {
|
|
27
|
-
type:
|
|
27
|
+
type: "autocomplete";
|
|
28
28
|
name: string;
|
|
29
29
|
message: string;
|
|
30
30
|
default: string | undefined;
|
|
@@ -35,7 +35,7 @@ export declare class CreateTemplateCommand implements CommandProvider {
|
|
|
35
35
|
}[];
|
|
36
36
|
choices?: undefined;
|
|
37
37
|
} | {
|
|
38
|
-
type:
|
|
38
|
+
type: "confirm";
|
|
39
39
|
name: string;
|
|
40
40
|
message: string;
|
|
41
41
|
when: (ctx: CreateTemplateCmdContext) => boolean;
|
|
@@ -43,7 +43,7 @@ export declare class CreateTemplateCommand implements CommandProvider {
|
|
|
43
43
|
choices?: undefined;
|
|
44
44
|
source?: undefined;
|
|
45
45
|
} | {
|
|
46
|
-
type:
|
|
46
|
+
type: "input";
|
|
47
47
|
name: string;
|
|
48
48
|
message: string;
|
|
49
49
|
default: string | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { type CommandData, type CommandProvider, NpmRegistryClient, PackageManagersModule, ProjectPackageJson, type
|
|
1
|
+
import { type CommandData, type CommandProvider, NpmRegistryClient, PackageManagersModule, ProjectPackageJson, type Task } from "@tsed/cli-core";
|
|
2
|
+
import type { PromptQuestion } from "@tsed/cli-prompts";
|
|
2
3
|
export interface UpdateCmdContext extends CommandData {
|
|
3
4
|
version: string;
|
|
4
5
|
[key: string]: any;
|
|
@@ -9,7 +10,7 @@ export declare class UpdateCmd implements CommandProvider {
|
|
|
9
10
|
protected packageManagers: PackageManagersModule;
|
|
10
11
|
protected cliPackage: any;
|
|
11
12
|
private versions;
|
|
12
|
-
$prompt(initialOptions: Partial<UpdateCmdContext>): Promise<
|
|
13
|
+
$prompt(initialOptions: Partial<UpdateCmdContext>): Promise<PromptQuestion[]>;
|
|
13
14
|
$exec(ctx: UpdateCmdContext): Promise<Task[]>;
|
|
14
15
|
private getAvailableVersions;
|
|
15
16
|
private getEligibleCliVersion;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/cli-core").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-core").
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-core").PromptQuestion[] | Promise<import("@tsed/cli-core").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/cli-core").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -12,7 +12,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
12
12
|
preserveDirectory?: boolean;
|
|
13
13
|
schema?: import("@tsed/schema").JsonSchema;
|
|
14
14
|
render(symbolName: string, data: GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
15
|
-
prompts?(data: GenerateCmdContext): import("@tsed/cli-
|
|
15
|
+
prompts?(data: GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
16
16
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
17
17
|
}>;
|
|
18
18
|
export default _default;
|
|
@@ -12,7 +12,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
12
12
|
preserveDirectory?: boolean;
|
|
13
13
|
schema?: import("@tsed/schema").JsonSchema;
|
|
14
14
|
render(symbolName: string, data: GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
15
|
-
prompts?(data: GenerateCmdContext): import("@tsed/cli-
|
|
15
|
+
prompts?(data: GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
16
16
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
17
17
|
}>;
|
|
18
18
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -12,7 +12,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
12
12
|
preserveDirectory?: boolean;
|
|
13
13
|
schema?: import("@tsed/schema").JsonSchema;
|
|
14
14
|
render(symbolName: string, data: GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
15
|
-
prompts?(data: GenerateCmdContext): import("@tsed/cli-
|
|
15
|
+
prompts?(data: GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
16
16
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
17
17
|
}>;
|
|
18
18
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/cli-core").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("@tsed/cli").GenerateCmdContext): Promise<string | undefined | import("@tsed/cli").TemplateRenderReturnType> | string | undefined | import("@tsed/cli").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("@tsed/cli").GenerateCmdContext): import("@tsed/cli-core").
|
|
14
|
+
prompts?(data: import("@tsed/cli").GenerateCmdContext): import("@tsed/cli-core").PromptQuestion[] | Promise<import("@tsed/cli-core").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/cli-core").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("@tsed/di").FactoryTokenProvider<{
|
|
|
11
11
|
preserveDirectory?: boolean;
|
|
12
12
|
schema?: import("@tsed/schema").JsonSchema;
|
|
13
13
|
render(symbolName: string, data: import("../index.js").GenerateCmdContext): Promise<string | undefined | import("../index.js").TemplateRenderReturnType> | string | undefined | import("../index.js").TemplateRenderReturnType;
|
|
14
|
-
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-
|
|
14
|
+
prompts?(data: import("../index.js").GenerateCmdContext): import("@tsed/cli-prompts").PromptQuestion[] | Promise<import("@tsed/cli-prompts").PromptQuestion[]>;
|
|
15
15
|
hooks?: import("@tsed/di").ProviderOpts["hooks"];
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type PromptQuestion, type ProviderOpts } from "@tsed/cli-core";
|
|
2
2
|
import type { JsonSchema } from "@tsed/schema";
|
|
3
3
|
import type { GenerateCmdContext } from "../interfaces/index.js";
|
|
4
4
|
import type { TemplateRenderReturnType } from "../services/CliTemplatesService.js";
|
|
@@ -38,7 +38,7 @@ export type DefineTemplateOptions = {
|
|
|
38
38
|
*/
|
|
39
39
|
schema?: JsonSchema;
|
|
40
40
|
render(symbolName: string, data: GenerateCmdContext): Promise<string | undefined | TemplateRenderReturnType> | string | undefined | TemplateRenderReturnType;
|
|
41
|
-
prompts?(data: GenerateCmdContext):
|
|
41
|
+
prompts?(data: GenerateCmdContext): PromptQuestion[] | Promise<PromptQuestion[]>;
|
|
42
42
|
hooks?: ProviderOpts["hooks"];
|
|
43
43
|
};
|
|
44
44
|
export declare function defineTemplate(opts: DefineTemplateOptions): import("@tsed/cli-core").FactoryTokenProvider<{
|
|
@@ -73,6 +73,6 @@ export declare function defineTemplate(opts: DefineTemplateOptions): import("@ts
|
|
|
73
73
|
*/
|
|
74
74
|
schema?: JsonSchema;
|
|
75
75
|
render(symbolName: string, data: GenerateCmdContext): Promise<string | undefined | TemplateRenderReturnType> | string | undefined | TemplateRenderReturnType;
|
|
76
|
-
prompts?(data: GenerateCmdContext):
|
|
76
|
+
prompts?(data: GenerateCmdContext): PromptQuestion[] | Promise<PromptQuestion[]>;
|
|
77
77
|
hooks?: ProviderOpts["hooks"];
|
|
78
78
|
}>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/cli",
|
|
3
3
|
"description": "CLI to bootstrap your Ts.ED project",
|
|
4
|
-
"version": "7.0.0-beta.
|
|
4
|
+
"version": "7.0.0-beta.11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"source": "./src/index.ts",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"@swc-node/register": "^1.11.1",
|
|
51
51
|
"@swc/core": "^1.15.7",
|
|
52
52
|
"@swc/helpers": "^0.5.17",
|
|
53
|
-
"@tsed/cli-core": "7.0.0-beta.
|
|
54
|
-
"@tsed/cli-mcp": "7.0.0-beta.
|
|
53
|
+
"@tsed/cli-core": "7.0.0-beta.11",
|
|
54
|
+
"@tsed/cli-mcp": "7.0.0-beta.11",
|
|
55
55
|
"@tsed/core": ">=8.21.0",
|
|
56
56
|
"@tsed/di": ">=8.21.0",
|
|
57
57
|
"@tsed/hooks": ">=8.21.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"zod": "3.25.76"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@tsed/typescript": "7.0.0-beta.
|
|
78
|
+
"@tsed/typescript": "7.0.0-beta.11",
|
|
79
79
|
"@types/change-case": "^2.3.1",
|
|
80
80
|
"@types/consolidate": "0.14.4",
|
|
81
81
|
"cross-env": "7.0.3",
|