neex 0.6.31 → 0.6.34

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/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  </picture>
7
7
  </a>
8
8
 
9
- # Neex v0.6.30
9
+ # Neex v0.6.34
10
10
 
11
11
  ### 🚀 Neex: The Modern Build System for Polyrepo-in-Monorepo Architecture
12
12
 
@@ -163,9 +163,10 @@ class Runner {
163
163
  FORCE_COLOR: this.options.color ? '1' : '0'
164
164
  };
165
165
  const proc = (0, child_process_1.spawn)(cmd, args, {
166
- stdio: 'inherit',
166
+ stdio: ['ignore', 'pipe', 'pipe'],
167
167
  shell: true,
168
168
  env,
169
+ detached: true,
169
170
  cwd
170
171
  });
171
172
  this.activeProcesses.set(originalCommand, proc);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neex",
3
- "version": "0.6.31",
3
+ "version": "0.6.34",
4
4
  "description": "The Modern Build System for Polyrepo-in-Monorepo Architecture",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",