@ionic/cli-framework
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="1.0.6"></a> | ||
## [1.0.6](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli-framework@1.0.5...@ionic/cli-framework@1.0.6) (2018-08-20) | ||
### Bug Fixes | ||
* **process:** catch and log errors in exit queue ([f3cd886](https://github.com/ionic-team/ionic-cli/commit/f3cd886)) | ||
<a name="1.0.5"></a> | ||
@@ -8,0 +19,0 @@ ## [1.0.5](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli-framework@1.0.4...@ionic/cli-framework@1.0.5) (2018-08-09) |
{ | ||
"name": "@ionic/cli-framework", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "The foundation framework of the Ionic CLI", | ||
@@ -33,3 +33,3 @@ "homepage": "https://ionicframework.com/", | ||
"@types/debug": "0.0.30", | ||
"@types/inquirer": "0.0.42", | ||
"@types/inquirer": "0.0.43", | ||
"@types/klaw": "^2.1.1", | ||
@@ -36,0 +36,0 @@ "@types/lodash": "^4.14.104", |
@@ -14,3 +14,3 @@ "use strict"; | ||
if (err) { | ||
debug('error while killing process tree for %d: %o', pid, err); | ||
debug('error while killing process tree for %d: %O', pid, err); | ||
return reject(err); | ||
@@ -112,4 +112,9 @@ } | ||
debug(`onBeforeExit handler: running ${exitQueue.length} queued functions`); | ||
for (const fn of exitQueue) { | ||
yield fn(); | ||
for (const [i, fn] of exitQueue.entries()) { | ||
try { | ||
yield fn(); | ||
} | ||
catch (e) { | ||
debug('Error from function %d in exit queue: %O', i, e); | ||
} | ||
} | ||
@@ -116,0 +121,0 @@ debug(`onBeforeExit handler: exiting (exit code ${process.exitCode ? process.exitCode : 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
200958
4731
+ Added@types/inquirer@0.0.43(transitive)
- Removed@types/inquirer@0.0.42(transitive)
Updated@types/inquirer@0.0.43