@adonisjs/ignitor
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -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) |
{ | ||
"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 @@ } |
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
38926
1068