We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdfa286 + 34587ce commit 83adc87Copy full SHA for 83adc87
lib/esm.mjs
@@ -252,7 +252,7 @@ export default function npmRunAll (patternOrPatterns, options) {
252
if (taskList != null && Array.isArray(taskList) === false) {
253
throw new Error('Invalid options.taskList')
254
}
255
- if (typeof maxParallel !== 'number' || !(maxParallel >= 0)) {
+ if (typeof maxParallel !== 'number' || maxParallel < 0) {
256
throw new Error('Invalid options.maxParallel')
257
258
if (!parallel && aggregateOutput) {
0 commit comments