@lerna/global-options
Advanced tools
Comparing version 3.0.5 to 3.1.3
@@ -6,2 +6,14 @@ # Change Log | ||
<a name="3.1.3"></a> | ||
## [3.1.3](https://github.com/lerna/lerna/compare/v3.1.2...v3.1.3) (2018-08-21) | ||
### Bug Fixes | ||
* **global-options:** Move env defaults to command superclass ([6d8e405](https://github.com/lerna/lerna/commit/6d8e405)), closes [#1449](https://github.com/lerna/lerna/issues/1449) | ||
<a name="3.0.5"></a> | ||
@@ -8,0 +20,0 @@ ## [3.0.5](https://github.com/lerna/lerna/compare/v3.0.4...v3.0.5) (2018-08-15) |
@@ -5,7 +5,7 @@ "use strict"; | ||
function globalOptions(yargs, { ci = false, loglevel = "info", progress = true }) { | ||
function globalOptions(yargs) { | ||
// the global options applicable to _every_ command | ||
const opts = { | ||
loglevel: { | ||
default: loglevel, | ||
defaultDescription: "info", | ||
describe: "What level of logs to report.", | ||
@@ -25,3 +25,3 @@ type: "string", | ||
progress: { | ||
default: !ci && progress, | ||
defaultDescription: "true", | ||
describe: "Enable progress bars. (Always off in CI)\nPass --no-progress to disable.", | ||
@@ -49,3 +49,2 @@ type: "boolean", | ||
.option("ci", { | ||
default: ci, | ||
hidden: true, | ||
@@ -52,0 +51,0 @@ type: "boolean", |
{ | ||
"name": "@lerna/global-options", | ||
"version": "3.0.5", | ||
"version": "3.1.3", | ||
"description": "Global options applicable to _every_ lerna sub-command", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "882b52eb4eec60f161c77feb0bb175efea0f2909" | ||
"gitHead": "a656a0136d7d5d8b8bb709e2da2b8b2582036fe7" | ||
} |
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
7156
46