@bitdiver/runner-server
Advanced tools
Comparing version 1.1.7 to 1.1.8
@@ -16,3 +16,3 @@ 'use strict'; | ||
var _ProgressBarConsole = require('./ProgressBarConsole'); | ||
var _ProgressBarConsole = require('./ProgressBarConsole2'); | ||
@@ -19,0 +19,0 @@ var _ProgressBarConsole2 = _interopRequireDefault(_ProgressBarConsole); |
@@ -272,2 +272,7 @@ 'use strict'; | ||
async _executeStepMethodParallel(stepInstances, methods) { | ||
let maxParallelSteps = this.maxParallelSteps; | ||
if (stepInstances[0].maxParallelSteps !== undefined && stepInstances[0].maxParallelSteps < maxParallelSteps) { | ||
maxParallelSteps = stepInstances[0].maxParallelSteps; | ||
} | ||
const promiseFunctions = []; | ||
@@ -277,3 +282,3 @@ for (const stepInstance of stepInstances) { | ||
} | ||
return (0, _pAll2.default)(promiseFunctions, { concurrency: this.maxParallelSteps }); | ||
return (0, _pAll2.default)(promiseFunctions, { concurrency: maxParallelSteps }); | ||
} | ||
@@ -280,0 +285,0 @@ |
{ | ||
"name": "@bitdiver/runner-server", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"description": "", | ||
@@ -19,3 +19,3 @@ "main": "lib/index.js", | ||
"test_only": "jest", | ||
"test": "npm run src_format && npm run src_lint && npm run build && jest -c jest.config.json", | ||
"test": "npm run build && jest -c jest.config.json", | ||
"test-manual": "npm run src_format && npm run src_lint && npm run build && babel-node tests/ProgressBarConsoleManual.js", | ||
@@ -58,3 +58,3 @@ "debug-manual": "npm run src_format && npm run src_lint && npm run build && babel-node --inspect-brk tests/ProgressBarConsoleManual.js", | ||
"regenerator-runtime": "^0.11.0", | ||
"semantic-release": "^12.4.1" | ||
"semantic-release": "^15.0.0" | ||
}, | ||
@@ -61,0 +61,0 @@ "dependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
249407
101
2354