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

@adonisjs/ignitor

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/ignitor - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="2.0.3"></a>
## [2.0.3](https://github.com/adonisjs/adonis-ignitor/compare/v2.0.2...v2.0.3) (2018-02-07)
### Bug Fixes
* **fireAce:** wrap inside try/catch and pretty print errors ([2d1027f](https://github.com/adonisjs/adonis-ignitor/commit/2d1027f))
<a name="2.0.2"></a>

@@ -2,0 +12,0 @@ ## [2.0.2](https://github.com/adonisjs/adonis-ignitor/compare/v2.0.1...v2.0.2) (2018-02-07)

2

package.json
{
"name": "@adonisjs/ignitor",
"version": "2.0.2",
"version": "2.0.3",
"description": "Fire the adonis-app (in good sense)",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -447,2 +447,3 @@ 'use strict'

console.log(forTerminal(output))
process.exit(1)
}

@@ -766,4 +767,3 @@

} catch (error) {
const output = await new Youch(error, {}).toJSON()
console.log(forTerminal(output))
this._printError(error)
}

@@ -799,5 +799,9 @@ }

this.loadCommands()
await this.fire()
this._invokeAce()
try {
this.loadCommands()
await this.fire()
this._invokeAce()
} catch (error) {
this._printError(error)
}
}

@@ -804,0 +808,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