@lerna/global-options
Advanced tools
Comparing version 3.10.6 to 3.12.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [3.12.0](https://github.com/lerna/lerna/compare/v3.11.1...v3.12.0) (2019-02-14) | ||
### Features | ||
* **global-options:** Default concurrency to logical CPU count ([#1931](https://github.com/lerna/lerna/issues/1931)) ([2c487fe](https://github.com/lerna/lerna/commit/2c487fe)) | ||
## [3.10.6](https://github.com/lerna/lerna/compare/v3.10.5...v3.10.6) (2019-01-19) | ||
@@ -8,0 +19,0 @@ |
"use strict"; | ||
const os = require("os"); | ||
module.exports = globalOptions; | ||
@@ -14,3 +16,3 @@ | ||
concurrency: { | ||
defaultDescription: "4", | ||
defaultDescription: os.cpus().length, | ||
describe: "How many processes to use when lerna parallelizes tasks.", | ||
@@ -17,0 +19,0 @@ type: "number", |
{ | ||
"name": "@lerna/global-options", | ||
"version": "3.10.6", | ||
"version": "3.12.0", | ||
"description": "Global options applicable to _every_ lerna sub-command", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "5a7392e59e6ae5ee8aea10467ffb4b12f3b1e3d1" | ||
"gitHead": "e2cc514e55a4b520258769a80648b42c45eea9f4" | ||
} |
@@ -9,3 +9,3 @@ # `@lerna/global-options` | ||
How many threads to use when Lerna parallelizes the tasks (defaults to `4`) | ||
How many threads to use when Lerna parallelizes the tasks (defaults to count of logical CPU cores) | ||
@@ -12,0 +12,0 @@ ```sh |
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
7876
55