neex 0.6.32 → 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 +1 -1
- package/dist/src/logger.js +2 -5
- package/dist/src/runner.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/src/logger.js
CHANGED
|
@@ -147,11 +147,8 @@ class Logger {
|
|
|
147
147
|
process.stdout.write('\r' + ' '.repeat(process.stdout.columns || 80) + '\r');
|
|
148
148
|
}
|
|
149
149
|
console.log(`${prefix} ${color('Starting...')}`);
|
|
150
|
-
//
|
|
151
|
-
|
|
152
|
-
// Start spinner for this command
|
|
153
|
-
this.startSpinner(command);
|
|
154
|
-
}
|
|
150
|
+
// Start spinner for this command
|
|
151
|
+
this.startSpinner(command);
|
|
155
152
|
}
|
|
156
153
|
startSpinner(command) {
|
|
157
154
|
// Only create a spinner if one doesn't already exist for this command
|
package/dist/src/runner.js
CHANGED
|
@@ -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: '
|
|
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);
|