@nestjs/cli 7.5.4 → 7.5.5

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.
@@ -69,7 +69,10 @@ class StartAction extends build_action_1.BuildAction {
69
69
  }
70
70
  else {
71
71
  childProcessRef = this.spawnChildProcess(entryFile, sourceRoot, debugFlag, outDirName, binaryToRun);
72
- childProcessRef.on('exit', () => (childProcessRef = undefined));
72
+ childProcessRef.on('exit', (code) => {
73
+ process.exitCode = code;
74
+ childProcessRef = undefined;
75
+ });
73
76
  }
74
77
  };
75
78
  }
@@ -49,6 +49,9 @@ class NewCommand extends abstract_command_1.AbstractCommand {
49
49
  case 'typescript':
50
50
  command.language = 'ts';
51
51
  break;
52
+ default:
53
+ command.language = lowercasedLanguage;
54
+ break;
52
55
  }
53
56
  }
54
57
  options.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "7.5.4",
3
+ "version": "7.5.5",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -43,27 +43,27 @@
43
43
  },
44
44
  "homepage": "https://github.com/nestjs/nest-cli#readme",
45
45
  "dependencies": {
46
- "@angular-devkit/core": "11.0.3",
47
- "@angular-devkit/schematics": "11.0.3",
48
- "@angular-devkit/schematics-cli": "0.1100.3",
46
+ "@angular-devkit/core": "11.2.0",
47
+ "@angular-devkit/schematics": "11.2.0",
48
+ "@angular-devkit/schematics-cli": "0.1102.0",
49
49
  "@nestjs/schematics": "^7.1.0",
50
- "@types/webpack": "4.41.25",
50
+ "@types/webpack": "4.41.26",
51
51
  "chalk": "3.0.0",
52
- "chokidar": "3.4.3",
52
+ "chokidar": "3.5.1",
53
53
  "cli-table3": "0.5.1",
54
54
  "commander": "4.1.1",
55
- "fork-ts-checker-webpack-plugin": "6.0.5",
55
+ "fork-ts-checker-webpack-plugin": "6.1.0",
56
56
  "inquirer": "7.3.3",
57
57
  "node-emoji": "1.10.0",
58
- "ora": "5.1.0",
58
+ "ora": "5.3.0",
59
59
  "os-name": "4.0.0",
60
60
  "rimraf": "3.0.2",
61
61
  "shelljs": "0.8.4",
62
62
  "tree-kill": "1.2.2",
63
63
  "tsconfig-paths": "3.9.0",
64
64
  "tsconfig-paths-webpack-plugin": "3.3.0",
65
- "typescript": "4.0.5",
66
- "webpack": "5.9.0",
65
+ "typescript": "4.1.5",
66
+ "webpack": "5.11.0",
67
67
  "webpack-node-externals": "2.5.2"
68
68
  },
69
69
  "devDependencies": {
@@ -71,8 +71,8 @@
71
71
  "@commitlint/config-angular": "11.0.0",
72
72
  "@types/copyfiles": "2.4.0",
73
73
  "@types/inquirer": "7.3.1",
74
- "@types/jest": "26.0.18",
75
- "@types/node": "12.12.31",
74
+ "@types/jest": "26.0.20",
75
+ "@types/node": "12.20.1",
76
76
  "@types/node-emoji": "1.8.1",
77
77
  "@types/ora": "3.1.0",
78
78
  "@types/os-name": "2.0.0",
@@ -82,17 +82,17 @@
82
82
  "@typescript-eslint/eslint-plugin": "^2.19.0",
83
83
  "@typescript-eslint/parser": "^2.19.0",
84
84
  "delete-empty": "3.0.0",
85
- "eslint": "7.15.0",
86
- "eslint-config-prettier": "7.0.0",
85
+ "eslint": "7.20.0",
86
+ "eslint-config-prettier": "7.2.0",
87
87
  "eslint-plugin-import": "2.22.1",
88
88
  "gulp": "4.0.2",
89
89
  "gulp-clean": "0.4.0",
90
- "husky": "4.3.5",
90
+ "husky": "5.0.9",
91
91
  "jest": "26.6.3",
92
92
  "prettier": "2.2.1",
93
- "release-it": "14.2.2",
94
- "ts-jest": "26.4.4",
95
- "ts-loader": "8.0.11",
93
+ "release-it": "14.4.0",
94
+ "ts-jest": "26.5.1",
95
+ "ts-loader": "8.0.17",
96
96
  "ts-node": "9.1.1"
97
97
  },
98
98
  "husky": {