New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

broccoli

Package Overview
Dependencies
Maintainers
5
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli - npm Package Compare versions

Comparing version 3.5.1 to 3.5.2

8

CHANGELOG.md
# master
## v3.5.2 (2021-05-03)
#### :bug: Bug Fix
* [#478](https://github.com/broccolijs/broccoli/pull/478) Manually exit process ([@asakusuma](https://github.com/asakusuma))
#### Committers: 1
- Asa Kusuma ([@asakusuma](https://github.com/asakusuma))
## v3.5.1 (2021-02-17)

@@ -4,0 +12,0 @@

14

dist/cli.js

@@ -112,4 +112,3 @@ "use strict";

ui.writeError(e);
process.exitCode = 1;
return;
return process.exit(1);
}

@@ -138,4 +137,3 @@ throw e;

ui.writeLine('option --output-path and [target] cannot be passed at same time', 'ERROR');
process.exitCode = 1;
return;
return process.exit(1);
}

@@ -160,4 +158,3 @@ if (options.outputPath) {

ui.writeError(e);
process.exitCode = 1;
return;
return process.exit(1);
}

@@ -203,2 +200,3 @@ throw e;

}
process.exit(process.exitCode);
}

@@ -208,3 +206,3 @@ catch (e) {

ui.writeError(e);
process.exitCode = 1;
process.exit(1);
}

@@ -220,5 +218,5 @@ }

program.outputHelp();
process.exitCode = 1;
process.exit(1);
}
};
//# sourceMappingURL=cli.js.map

@@ -113,2 +113,3 @@ "use strict";

}
_process.exit(_process.exitCode);
})

@@ -118,3 +119,3 @@ .catch(err => {

ui.writeError(err);
_process.exitCode = 1;
_process.exit(1);
});

@@ -121,0 +122,0 @@ }

{
"name": "broccoli",
"version": "3.5.1",
"version": "3.5.2",
"description": "Fast client-side asset builder",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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