Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bitdiver/runner-server

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitdiver/runner-server - npm Package Compare versions

Comparing version 1.1.7 to 1.1.8

lib/ProgressBarConsole2.js

2

lib/index.js

@@ -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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc