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

@ionic/cli-framework

Package Overview
Dependencies
Maintainers
15
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ionic/cli-framework - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

11

CHANGELOG.md

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

4

package.json
{
"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})`);

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