Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@adonisjs/ace

Package Overview
Dependencies
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/ace - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

.nyc_output/3c4f0bc98d5793676b8a47bc44b86cd5.json

10

CHANGELOG.md

@@ -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)

2

package.json
{
"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 @@ }, {})

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