@tsed/cli 7.0.0-beta.1 → 7.0.0-beta.2

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.
@@ -4,7 +4,7 @@ import { CliTemplatesService, type TemplateRenderOptions, type TemplateRenderRet
4
4
  export declare class CliProjectService {
5
5
  readonly templates: CliTemplatesService;
6
6
  private project;
7
- private rootDir;
7
+ get rootDir(): string;
8
8
  get srcDir(): string;
9
9
  getRelativePath(path: string): string;
10
10
  getServerFileName(): "server" | "Server";
@@ -20,9 +20,9 @@ export type TemplateRenderReturnType = {
20
20
  };
21
21
  export declare class CliTemplatesService {
22
22
  #private;
23
- readonly rootDir: string;
24
23
  readonly fs: CliFs;
25
24
  readonly renderedFiles: TemplateRenderReturnType[];
25
+ get rootDir(): string;
26
26
  get srcDir(): string;
27
27
  get templatesDir(): string;
28
28
  $onInit(): Promise<void>;
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.1",
4
+ "version": "7.0.0-beta.2",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "source": "./src/index.ts",
@@ -22,10 +22,12 @@
22
22
  "test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
23
23
  },
24
24
  "bin": {
25
- "tsed": "lib/esm/bin/tsed.js"
25
+ "tsed": "lib/esm/bin/tsed.js",
26
+ "tsed-mcp": "lib/esm/bin/tsed-mcp.js"
26
27
  },
27
28
  "files": [
28
29
  "lib/esm/bin/tsed.js",
30
+ "lib/esm/bin/tsed-mcp.js",
29
31
  "lib/esm/bin",
30
32
  "lib",
31
33
  "templates"
@@ -48,21 +50,22 @@
48
50
  "@swc-node/register": "^1.10.9",
49
51
  "@swc/core": "1.7.26",
50
52
  "@swc/helpers": "^0.5.13",
51
- "@tsed/cli-core": "7.0.0-beta.1",
52
- "@tsed/core": ">=8.17.3",
53
- "@tsed/di": ">=8.17.3",
54
- "@tsed/hooks": ">=8.17.3",
53
+ "@tsed/cli-core": "7.0.0-beta.2",
54
+ "@tsed/core": ">=8.18.0",
55
+ "@tsed/di": ">=8.18.0",
56
+ "@tsed/hooks": ">=8.18.0",
55
57
  "@tsed/logger": ">=8.0.3",
56
58
  "@tsed/logger-std": ">=8.0.3",
57
- "@tsed/normalize-path": ">=8.17.3",
58
- "@tsed/openspec": ">=8.17.3",
59
- "@tsed/schema": ">=8.17.3",
59
+ "@tsed/normalize-path": ">=8.18.0",
60
+ "@tsed/openspec": ">=8.18.0",
61
+ "@tsed/schema": ">=8.18.0",
60
62
  "chalk": "^5.3.0",
61
63
  "change-case": "^5.4.4",
62
64
  "consolidate": "^1.0.4",
63
65
  "create-frame": "^1.0.0",
64
66
  "fs-extra": "^11.2.0",
65
67
  "globby": "^14.0.2",
68
+ "json-schema-to-zod": "2.6.1",
66
69
  "read-pkg-up": "^11.0.0",
67
70
  "rxjs": "^7.8.1",
68
71
  "semver": "^7.6.3",
@@ -70,7 +73,7 @@
70
73
  "tslib": "^2.7.0"
71
74
  },
72
75
  "devDependencies": {
73
- "@tsed/typescript": "7.0.0-beta.1",
76
+ "@tsed/typescript": "7.0.0-beta.2",
74
77
  "@types/change-case": "^2.3.1",
75
78
  "@types/consolidate": "0.14.4",
76
79
  "cross-env": "7.0.3",