@tsed/cli 6.0.0-alpha.8 → 6.0.0-alpha.9
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 +5 -5
- package/lib/esm/commands/generate/GenerateCmd.js.map +1 -1
- package/lib/esm/commands/init/InitCmd.js +4 -4
- package/lib/esm/constants/index.js +2 -2
- package/lib/esm/constants/index.js.map +1 -1
- package/lib/esm/pipes/ClassNamePipe.js +2 -2
- package/lib/esm/pipes/RoutePipe.js +3 -3
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/Cli.d.ts +1 -1
- package/lib/types/constants/index.d.ts +1 -1
- package/package.json +12 -13
package/lib/types/Cli.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { ArchitectureConvention, ProjectConvention } from "./interfaces/index.js
|
|
|
3
3
|
export declare class Cli extends CliCore {
|
|
4
4
|
static defaults: {
|
|
5
5
|
name: string;
|
|
6
|
-
pkg: import("read-pkg").NormalizedPackageJson;
|
|
6
|
+
pkg: import("read-pkg-up").NormalizedPackageJson;
|
|
7
7
|
templateDir: string;
|
|
8
8
|
plugins: boolean;
|
|
9
9
|
commands: (typeof import("./index.js").AddCmd | typeof import("./index.js").GenerateCmd | typeof import("./index.js").InitCmd | typeof import("./commands/run/RunCmd.js").RunCmd | typeof import("./index.js").UpdateCmd)[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PKG: import("read-pkg").NormalizedPackageJson;
|
|
1
|
+
export declare const PKG: import("read-pkg-up").NormalizedPackageJson;
|
|
2
2
|
export declare const MINIMAL_TSED_VERSION = "7";
|
|
3
3
|
export declare const DEFAULT_TSED_TAGS = "latest";
|
|
4
4
|
export declare const IGNORE_VERSIONS: string[];
|
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": "6.0.0-alpha.
|
|
4
|
+
"version": "6.0.0-alpha.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"source": "./src/index.ts",
|
|
@@ -62,26 +62,25 @@
|
|
|
62
62
|
"node": ">=14"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@swc-node/register": "
|
|
66
|
-
"@swc/core": "
|
|
67
|
-
"@swc/helpers": "
|
|
68
|
-
"@tsed/cli-core": "6.0.0-alpha.
|
|
65
|
+
"@swc-node/register": "^1.10.9",
|
|
66
|
+
"@swc/core": "^1.7.28",
|
|
67
|
+
"@swc/helpers": "^0.5.13",
|
|
68
|
+
"@tsed/cli-core": "6.0.0-alpha.9",
|
|
69
69
|
"@tsed/core": ">=7.14.2",
|
|
70
70
|
"@tsed/di": ">=7.14.2",
|
|
71
71
|
"@tsed/logger": ">=6.2.1",
|
|
72
72
|
"@tsed/openspec": ">=7.14.2",
|
|
73
73
|
"@tsed/schema": ">=7.14.2",
|
|
74
|
-
"chalk": "
|
|
75
|
-
"change-case": "4.
|
|
74
|
+
"chalk": "^5.3.0",
|
|
75
|
+
"change-case": "^5.4.4",
|
|
76
76
|
"esm-module-alias": "^2.2.1",
|
|
77
|
-
"globby": "
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"tslib": "2.3.1"
|
|
77
|
+
"globby": "^14.0.2",
|
|
78
|
+
"read-pkg-up": "^11.0.0",
|
|
79
|
+
"semver": "^7.6.3",
|
|
80
|
+
"tslib": "^2.7.0"
|
|
82
81
|
},
|
|
83
82
|
"devDependencies": {
|
|
84
|
-
"@tsed/typescript": "6.0.0-alpha.
|
|
83
|
+
"@tsed/typescript": "6.0.0-alpha.9",
|
|
85
84
|
"@types/change-case": "^2.3.1",
|
|
86
85
|
"cross-env": "7.0.3",
|
|
87
86
|
"typescript": "5.6.2",
|