@tsed/cli-core 3.13.3 → 3.15.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.
@@ -1,7 +1,7 @@
1
1
  import { CliYaml } from "./CliYaml";
2
2
  export declare class CliDockerComposeYaml {
3
3
  protected cliYaml: CliYaml;
4
- read(): Promise<string | number | object | null | undefined>;
4
+ read(): Promise<unknown>;
5
5
  write(obj: any): Promise<void>;
6
6
  addDatabaseService(name: string, database: string): Promise<void>;
7
7
  }
@@ -3,6 +3,6 @@ import { ProjectPackageJson } from "./ProjectPackageJson";
3
3
  export declare class CliYaml {
4
4
  protected projectPackageJson: ProjectPackageJson;
5
5
  protected fs: CliFs;
6
- read(path: string): Promise<string | number | object | null | undefined>;
6
+ read(path: string): Promise<unknown>;
7
7
  write(path: string, obj: any): Promise<void>;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsed/cli-core",
3
- "version": "3.13.3",
3
+ "version": "3.15.0",
4
4
  "description": "Build your CLI with TypeScript and Decorators",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/index.js",
@@ -42,7 +42,7 @@
42
42
  "inquirer": "8.0.0",
43
43
  "inquirer-autocomplete-prompt": "1.3.0",
44
44
  "js-yaml": "4.1.0",
45
- "listr2": "3.11.0",
45
+ "listr2": "3.13.1",
46
46
  "module-alias": "2.2.2",
47
47
  "normalize-path": "3.0.0",
48
48
  "read-pkg-up": "7.0.1",
@@ -53,7 +53,7 @@
53
53
  "tslib": "2.3.1",
54
54
  "tunnel": "0.0.6",
55
55
  "update-notifier": "5.1.0",
56
- "url-parse": "1.5.1"
56
+ "url-parse": "1.5.3"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/axios": "0.14.0",
@@ -63,7 +63,7 @@
63
63
  "@types/fs-extra": "9.0.6",
64
64
  "@types/globby": "9.1.0",
65
65
  "@types/inquirer": "7.3.1",
66
- "@types/js-yaml": "4.0.0",
66
+ "@types/js-yaml": "4.0.4",
67
67
  "@types/listr": "0.14.2",
68
68
  "@types/read-pkg-up": "6.0.0",
69
69
  "@types/semver": "7.3.5",
@@ -72,8 +72,8 @@
72
72
  "@types/url-parse": "^1.4.3"
73
73
  },
74
74
  "peerDependencies": {
75
- "@tsed/core": "^6.70.1",
76
- "@tsed/di": "^6.70.1"
75
+ "@tsed/core": "^6.81.0",
76
+ "@tsed/di": "^6.81.0"
77
77
  },
78
78
  "repository": "https://github.com/tsedio/tsed-cli",
79
79
  "bugs": {