Socket
Socket
Sign inDemoInstall

@lerna/run

Package Overview
Dependencies
Maintainers
2
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/run - npm Package Compare versions

Comparing version 5.1.5 to 5.1.6

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [5.1.6](https://github.com/lerna/lerna/compare/v5.1.5...v5.1.6) (2022-06-24)
### Bug Fixes
* lerna run parallel should maximize concurrency with useNx ([#3205](https://github.com/lerna/lerna/issues/3205)) ([f80d03c](https://github.com/lerna/lerna/commit/f80d03c17b06146b097f904ee066728d6580090d))
## [5.1.5](https://github.com/lerna/lerna/compare/v5.1.4...v5.1.5) (2022-06-24)

@@ -8,0 +19,0 @@

6

index.js

@@ -230,3 +230,7 @@ /* eslint-disable */

outputStyle,
parallel: this.options.concurrency,
/**
* To match lerna's own behavior (via pMap's default concurrency), we set parallel to a very large number if
* the flag has been set (we can't use Infinity because that would cause issues with the task runner).
*/
parallel: this.options.parallel ? 999 : this.concurrency,
nxBail: this.bail,

@@ -233,0 +237,0 @@ nxIgnoreCycles: !this.options.rejectCycles,

20

package.json
{
"name": "@lerna/run",
"version": "5.1.5",
"version": "5.1.6",
"description": "Run an npm script in each package that contains that script",

@@ -36,13 +36,13 @@ "keywords": [

"dependencies": {
"@lerna/command": "5.1.5",
"@lerna/filter-options": "5.1.5",
"@lerna/npm-run-script": "5.1.5",
"@lerna/output": "5.1.5",
"@lerna/profiler": "5.1.5",
"@lerna/run-topologically": "5.1.5",
"@lerna/timer": "5.1.5",
"@lerna/validation-error": "5.1.5",
"@lerna/command": "5.1.6",
"@lerna/filter-options": "5.1.6",
"@lerna/npm-run-script": "5.1.6",
"@lerna/output": "5.1.6",
"@lerna/profiler": "5.1.6",
"@lerna/run-topologically": "5.1.6",
"@lerna/timer": "5.1.6",
"@lerna/validation-error": "5.1.6",
"p-map": "^4.0.0"
},
"gitHead": "ef1ff4b464127ef1b4a0d3845e2e18e0cf37b01d"
"gitHead": "edf59da6f9c8753530ef0d811bdf75f4dad16128"
}
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