concurrently 5.1.0 → 5.2.0
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 +18 -13
- package/bin/concurrently.js +9 -1
- package/index.js +3 -1
- package/package.json +1 -1
- package/src/concurrently.js +27 -9
- package/src/defaults.js +2 -0
- package/src/flow-control/kill-on-signal.js +1 -1
- package/src/get-spawn-opts.js +4 -3
package/README.md
CHANGED
|
@@ -113,18 +113,21 @@ Help:
|
|
|
113
113
|
concurrently [options] <command ...>
|
|
114
114
|
|
|
115
115
|
General
|
|
116
|
-
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
116
|
+
-m, --max-processes How many processes should run at once.
|
|
117
|
+
New processes only spawn after all restart tries of a
|
|
118
|
+
process. [number]
|
|
119
|
+
-n, --names List of custom names to be used in prefix template.
|
|
120
|
+
Example names: "main,browser,server" [string]
|
|
121
|
+
--name-separator The character to split <names> on. Example usage:
|
|
122
|
+
concurrently -n "styles|scripts|server" --name-separator
|
|
123
|
+
"|" [default: ","]
|
|
124
|
+
-r, --raw Output only raw output of processes, disables prettifying
|
|
125
|
+
and concurrently coloring. [boolean]
|
|
126
|
+
-s, --success Return exit code of zero or one based on the success or
|
|
127
|
+
failure of the "first" child to terminate, the "last
|
|
128
|
+
child", or succeed only if "all" child processes succeed.
|
|
126
129
|
[choices: "first", "last", "all"] [default: "all"]
|
|
127
|
-
--no-color
|
|
130
|
+
--no-color Disables colors from logging [boolean]
|
|
128
131
|
|
|
129
132
|
Prefix styling
|
|
130
133
|
-p, --prefix Prefix used in logging for each process.
|
|
@@ -222,7 +225,7 @@ concurrently can be used programmatically by using the API documented below:
|
|
|
222
225
|
|
|
223
226
|
### `concurrently(commands[, options])`
|
|
224
227
|
- `commands`: an array of either strings (containing the commands to run) or objects
|
|
225
|
-
with the shape `{ command, name, prefixColor }`.
|
|
228
|
+
with the shape `{ command, name, prefixColor, env }`.
|
|
226
229
|
- `options` (optional): an object containing any of the below:
|
|
227
230
|
- `defaultInputTarget`: the default input target when reading from `inputStream`.
|
|
228
231
|
Default: `0`.
|
|
@@ -230,6 +233,7 @@ concurrently can be used programmatically by using the API documented below:
|
|
|
230
233
|
to read the input from, eg `process.stdin`.
|
|
231
234
|
- `killOthers`: an array of exitting conditions that will cause a process to kill others.
|
|
232
235
|
Can contain any of `success` or `failure`.
|
|
236
|
+
- `maxProcesses`: how many processes should run at once.
|
|
233
237
|
- `outputStream`: a [`Writable` stream](https://nodejs.org/dist/latest-v10.x/docs/api/stream.html#stream_writable_streams)
|
|
234
238
|
to write logs to. Default: `process.stdout`.
|
|
235
239
|
- `prefix`: the prefix type to use when logging processes output.
|
|
@@ -255,7 +259,8 @@ Example:
|
|
|
255
259
|
const concurrently = require('concurrently');
|
|
256
260
|
concurrently([
|
|
257
261
|
'npm:watch-*',
|
|
258
|
-
{ command: 'nodemon', name: 'server' }
|
|
262
|
+
{ command: 'nodemon', name: 'server' },
|
|
263
|
+
{ command: 'deploy', name: 'deploy', env: { PUBLIC_KEY: '...' } }
|
|
259
264
|
], {
|
|
260
265
|
prefix: 'name',
|
|
261
266
|
killOthers: ['failure', 'success'],
|
package/bin/concurrently.js
CHANGED
|
@@ -13,6 +13,13 @@ const args = yargs
|
|
|
13
13
|
.alias('v', 'version')
|
|
14
14
|
.options({
|
|
15
15
|
// General
|
|
16
|
+
'm': {
|
|
17
|
+
alias: 'max-processes',
|
|
18
|
+
describe:
|
|
19
|
+
'How many processes should run at once.\n' +
|
|
20
|
+
'New processes only spawn after all restart tries of a process.',
|
|
21
|
+
type: 'number'
|
|
22
|
+
},
|
|
16
23
|
'n': {
|
|
17
24
|
alias: 'names',
|
|
18
25
|
describe:
|
|
@@ -125,7 +132,7 @@ const args = yargs
|
|
|
125
132
|
'Can be either the index or the name of the process.'
|
|
126
133
|
}
|
|
127
134
|
})
|
|
128
|
-
.group(['n', 'name-separator', 'raw', 's', 'no-color'], 'General')
|
|
135
|
+
.group(['m', 'n', 'name-separator', 'raw', 's', 'no-color'], 'General')
|
|
129
136
|
.group(['p', 'c', 'l', 't'], 'Prefix styling')
|
|
130
137
|
.group(['i', 'default-input-target'], 'Input handling')
|
|
131
138
|
.group(['k', 'kill-others-on-fail'], 'Killing other processes')
|
|
@@ -152,6 +159,7 @@ concurrently(args._.map((command, index) => {
|
|
|
152
159
|
killOthers: args.killOthers
|
|
153
160
|
? ['success', 'failure']
|
|
154
161
|
: (args.killOthersOnFail ? ['failure'] : []),
|
|
162
|
+
maxProcesses: args.maxProcesses,
|
|
155
163
|
raw: args.raw,
|
|
156
164
|
prefix: args.prefix,
|
|
157
165
|
prefixLength: args.prefixLength,
|
package/index.js
CHANGED
|
@@ -19,6 +19,7 @@ module.exports = (commands, options = {}) => {
|
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
return concurrently(commands, {
|
|
22
|
+
maxProcesses: options.maxProcesses,
|
|
22
23
|
raw: options.raw,
|
|
23
24
|
successCondition: options.successCondition,
|
|
24
25
|
controllers: [
|
|
@@ -30,7 +31,7 @@ module.exports = (commands, options = {}) => {
|
|
|
30
31
|
defaultInputTarget: options.defaultInputTarget,
|
|
31
32
|
inputStream: options.inputStream,
|
|
32
33
|
}),
|
|
33
|
-
new KillOnSignal(),
|
|
34
|
+
new KillOnSignal({ process }),
|
|
34
35
|
new RestartProcess({
|
|
35
36
|
logger,
|
|
36
37
|
delay: options.restartDelay,
|
|
@@ -47,6 +48,7 @@ module.exports = (commands, options = {}) => {
|
|
|
47
48
|
// Export all flow controllers and the main concurrently function,
|
|
48
49
|
// so that 3rd-parties can use them however they want
|
|
49
50
|
exports.concurrently = concurrently;
|
|
51
|
+
exports.Logger = Logger;
|
|
50
52
|
exports.InputHandler = InputHandler;
|
|
51
53
|
exports.KillOnSignal = KillOnSignal;
|
|
52
54
|
exports.KillOthers = KillOthers;
|
package/package.json
CHANGED
package/src/concurrently.js
CHANGED
|
@@ -31,17 +31,17 @@ module.exports = (commands, options) => {
|
|
|
31
31
|
new ExpandNpmWildcard()
|
|
32
32
|
];
|
|
33
33
|
|
|
34
|
-
const spawnOpts = getSpawnOpts({ raw: options.raw });
|
|
35
|
-
|
|
36
34
|
commands = _(commands)
|
|
37
35
|
.map(mapToCommandInfo)
|
|
38
36
|
.flatMap(command => parseCommand(command, commandParsers))
|
|
39
|
-
.map((command, index) => new Command(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
37
|
+
.map((command, index) => new Command(
|
|
38
|
+
Object.assign({
|
|
39
|
+
index,
|
|
40
|
+
spawnOpts: getSpawnOpts({ raw: options.raw, env: command.env }),
|
|
41
|
+
killProcess: options.kill,
|
|
42
|
+
spawn: options.spawn,
|
|
43
|
+
}, command)
|
|
44
|
+
))
|
|
45
45
|
.value();
|
|
46
46
|
|
|
47
47
|
commands = options.controllers.reduce(
|
|
@@ -49,7 +49,12 @@ module.exports = (commands, options) => {
|
|
|
49
49
|
commands
|
|
50
50
|
);
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
const commandsLeft = commands.slice();
|
|
53
|
+
const maxProcesses = Math.max(1, Number(options.maxProcesses) || commandsLeft.length);
|
|
54
|
+
for (let i = 0; i < maxProcesses; i++) {
|
|
55
|
+
maybeRunMore(commandsLeft);
|
|
56
|
+
}
|
|
57
|
+
|
|
53
58
|
return new CompletionListener({ successCondition: options.successCondition }).listen(commands);
|
|
54
59
|
};
|
|
55
60
|
|
|
@@ -58,6 +63,7 @@ function mapToCommandInfo(command) {
|
|
|
58
63
|
command: command.command || command,
|
|
59
64
|
name: command.name || '',
|
|
60
65
|
prefixColor: command.prefixColor || '',
|
|
66
|
+
env: command.env || {},
|
|
61
67
|
};
|
|
62
68
|
}
|
|
63
69
|
|
|
@@ -67,3 +73,15 @@ function parseCommand(command, parsers) {
|
|
|
67
73
|
_.castArray(command)
|
|
68
74
|
);
|
|
69
75
|
}
|
|
76
|
+
|
|
77
|
+
function maybeRunMore(commandsLeft) {
|
|
78
|
+
const command = commandsLeft.shift();
|
|
79
|
+
if (!command) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
command.start();
|
|
84
|
+
command.close.subscribe(() => {
|
|
85
|
+
maybeRunMore(commandsLeft);
|
|
86
|
+
});
|
|
87
|
+
}
|
package/src/defaults.js
CHANGED
|
@@ -8,6 +8,8 @@ module.exports = {
|
|
|
8
8
|
defaultInputTarget: 0,
|
|
9
9
|
// Whether process.stdin should be forwarded to child processes
|
|
10
10
|
handleInput: false,
|
|
11
|
+
// How many processes to run at once
|
|
12
|
+
maxProcesses: 0,
|
|
11
13
|
nameSeparator: ',',
|
|
12
14
|
// Which prefix style to use when logging processes output.
|
|
13
15
|
prefix: '',
|
package/src/get-spawn-opts.js
CHANGED
|
@@ -3,10 +3,11 @@ const supportsColor = require('supports-color');
|
|
|
3
3
|
module.exports = ({
|
|
4
4
|
colorSupport = supportsColor.stdout,
|
|
5
5
|
process = global.process,
|
|
6
|
-
raw = false
|
|
7
|
-
|
|
6
|
+
raw = false,
|
|
7
|
+
env = {}
|
|
8
|
+
}) => Object.assign(
|
|
8
9
|
{},
|
|
9
10
|
raw && { stdio: 'inherit' },
|
|
10
11
|
/^win/.test(process.platform) && { detached: false },
|
|
11
|
-
|
|
12
|
+
{ env: Object.assign(colorSupport ? { FORCE_COLOR: colorSupport.level } : {}, process.env, env) }
|
|
12
13
|
);
|