nestia 2.0.1-dev.20220413 → 2.0.2-dev.20220413

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestia",
3
- "version": "2.0.1-dev.20220413",
3
+ "version": "2.0.2-dev.20220413",
4
4
  "description": "Automatic SDK and Document generator for the NestJS",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
@@ -31,15 +31,15 @@
31
31
  "dependencies": {
32
32
  "@types/cli": "^0.11.19",
33
33
  "@types/glob": "^7.2.0",
34
- "@types/node": "^14.14.22",
34
+ "@types/node": "^17.0.23",
35
35
  "@types/reflect-metadata": "^0.1.0",
36
36
  "cli": "^1.0.1",
37
37
  "del": "^6.0.0",
38
38
  "glob": "^7.2.0",
39
- "ts-node": "^9.1.1",
39
+ "ts-node": "^10.4.0",
40
40
  "tstl": "^2.5.3",
41
41
  "ttypescript": "^1.5.13",
42
- "typescript": "^4.5.3",
42
+ "typescript": "^4.6.3",
43
43
  "typescript-is": "^0.19.0",
44
44
  "typescript-transform-paths": "^3.3.1"
45
45
  },
package/src/bin/nestia.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env ts-node
2
2
 
3
- import cp from "child_process";
4
- import fs from "fs";
5
- import { CompilerOptions } from "../internal/CompilerOptions";
3
+ import * as cp from "child_process";
4
+ import * as fs from "fs";
6
5
 
6
+ import { CompilerOptions } from "../internal/CompilerOptions";
7
7
  import { stripJsonComments } from "../utils/stripJsonComments";
8
8
 
9
9
  interface IConfig
package/tsconfig.json CHANGED
@@ -17,7 +17,7 @@
17
17
  // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
18
18
  // "sourceMap": true, /* Generates corresponding '.map' file. */
19
19
  // "outFile": "./", /* Concatenate and emit output to single file. */
20
- "outDir": "./lib", /* Redirect output structure to the directory. */
20
+ // "outDir": "./lib", /* Redirect output structure to the directory. */
21
21
  // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
22
22
  // "composite": true, /* Enable project compilation */
23
23
  // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */