@nestjs/cli 11.0.9 → 11.0.10

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.
@@ -26,7 +26,7 @@ class StartCommand extends abstract_command_1.AbstractCommand {
26
26
  .option('--entryFile [entryFile]', "Path to the entry file where this command will work with. Defaults to the one defined at your Nest's CLI config file.")
27
27
  .option('-e, --exec [binary]', 'Binary to run (default: "node").')
28
28
  .option('--preserveWatchOutput', 'Use "preserveWatchOutput" option when using tsc watch mode.')
29
- .option('--shell', "Spawn child processes within a shell (see node's child_process.spawn() method docs). Default: false.", false)
29
+ .option('--shell', "Spawn child processes within a shell (see node's child_process.spawn() method docs). Default: true.", true)
30
30
  .option('--no-shell', 'Do not spawn child processes within a shell.')
31
31
  .option('--env-file [path]', 'Path to an env file (.env) to be loaded into the environment.', collect, [])
32
32
  .description('Run Nest application.')
@@ -14,6 +14,7 @@ class AbstractRunner {
14
14
  const options = {
15
15
  cwd,
16
16
  stdio: collect ? 'pipe' : 'inherit',
17
+ shell: true,
17
18
  };
18
19
  return new Promise((resolve, reject) => {
19
20
  const child = (0, child_process_1.spawn)(`${this.binary}`, [...this.args, ...args], options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "11.0.9",
3
+ "version": "11.0.10",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "homepage": "https://github.com/nestjs/nest-cli#readme",
40
40
  "dependencies": {
41
- "@angular-devkit/core": "20.1.3",
42
- "@angular-devkit/schematics": "20.1.3",
43
- "@angular-devkit/schematics-cli": "20.1.3",
41
+ "@angular-devkit/core": "19.2.15",
42
+ "@angular-devkit/schematics": "19.2.15",
43
+ "@angular-devkit/schematics-cli": "19.2.15",
44
44
  "@inquirer/prompts": "7.8.0",
45
45
  "@nestjs/schematics": "^11.0.1",
46
46
  "ansis": "4.1.0",