cli-engine-command
Advanced tools
Comparing version 4.0.1 to 4.0.2
@@ -11,3 +11,3 @@ 'use strict'; | ||
require('.'); | ||
var _ = require('.'); | ||
@@ -38,3 +38,3 @@ var _git = require('../git'); | ||
}; | ||
return Object.assign(defaultOptions, options); | ||
return (0, _.merge)(defaultOptions, options); | ||
} | ||
@@ -48,3 +48,3 @@ | ||
}; | ||
return Object.assign(defaultOptions, options); | ||
return (0, _.merge)(defaultOptions, options); | ||
} | ||
@@ -51,0 +51,0 @@ |
@@ -6,4 +6,13 @@ 'use strict'; | ||
}); | ||
exports.flags = undefined; | ||
exports.flags = exports.merge = undefined; | ||
var _lodash = require('lodash.merge'); | ||
Object.defineProperty(exports, 'merge', { | ||
enumerable: true, | ||
get: function () { | ||
return _interopRequireDefault(_lodash).default; | ||
} | ||
}); | ||
var _boolean = require('./boolean'); | ||
@@ -10,0 +19,0 @@ |
@@ -8,3 +8,3 @@ 'use strict'; | ||
require('.'); | ||
var _ = require('.'); | ||
@@ -23,3 +23,3 @@ function OrgFlag(options = {}, env = process.env) { | ||
}; | ||
return Object.assign(defaultOptions, options); | ||
return (0, _.merge)(defaultOptions, options); | ||
} |
@@ -6,3 +6,7 @@ 'use strict'; | ||
}); | ||
exports.RequiredFlagError = undefined; | ||
exports.default = StringFlag; | ||
var _ = require('.'); | ||
function StringFlag(options = {}) { | ||
@@ -18,3 +22,3 @@ const required = options.optional === false || options.required; | ||
}; | ||
return Object.assign(defaultOptions, options); | ||
return (0, _.merge)(defaultOptions, options); | ||
} | ||
@@ -21,0 +25,0 @@ |
{ | ||
"name": "cli-engine-command", | ||
"description": "base CLI command for cli-engine", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"author": "Jeff Dickey @dickeyxxx", | ||
@@ -16,2 +16,3 @@ "bugs": "https://github.com/heroku/cli-engine-command/issues", | ||
"lodash.maxby": "4.6.0", | ||
"lodash.merge": "4.6.0", | ||
"netrc-parser": "2.0.2", | ||
@@ -18,0 +19,0 @@ "pretty-format": "20.0.1", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
136751
1997
13
+ Addedlodash.merge@4.6.0
+ Addedlodash.merge@4.6.0(transitive)