@adonisjs/ace
Advanced tools
Comparing version 4.0.0 to 4.0.1
@@ -0,1 +1,11 @@ | ||
<a name="4.0.1"></a> | ||
## [4.0.1](https://github.com/adonisjs/ace/compare/v4.0.0...v4.0.1) (2017-07-16) | ||
### Bug Fixes | ||
* **command:** look instance properties on command ([f9cb1e4](https://github.com/adonisjs/ace/commit/f9cb1e4)) | ||
<a name="4.0.0"></a> | ||
@@ -2,0 +12,0 @@ # [4.0.0](https://github.com/adonisjs/ace/compare/v3.0.8...v4.0.0) (2017-07-16) |
{ | ||
"name": "@adonisjs/ace", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "Ace is a command line tool for adonisjs framework", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -530,3 +530,3 @@ 'use strict' | ||
const options = _.transform(command.opts(), (result, option, name) => { | ||
result[name] = command[name] || false | ||
result[name] = result[name] = command.hasOwnProperty(name) ? command[name] : null | ||
return result | ||
@@ -533,0 +533,0 @@ }, {}) |
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
176156
19