Socket
Socket
Sign inDemoInstall

ember-cli-babel

Package Overview
Dependencies
Maintainers
5
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-babel - npm Package Compare versions

Comparing version 5.1.8 to 5.1.9

22

index.js

@@ -71,2 +71,3 @@ /* jshint node: true */

var options = clone(getAddonOptions(addonContext));
var ui = addonContext.ui;

@@ -76,11 +77,26 @@ // pass a console object that wraps the addon's `UI` object

log: function(message) {
addonContext.ui.writeInfoLine(message);
// fallback needed for support of ember-cli < 2.2.0
if (ui.writeInfoLine) {
ui.writeInfoLine(message);
} else {
ui.writeLine(message, 'INFO');
}
},
warn: function(message) {
addonContext.ui.writeWarnLine(message);
// fallback needed for support of ember-cli < 2.2.0
if (ui.writeWarnLine) {
ui.writeWarnLine(message);
} else {
ui.writeLine(message, 'WARN');
}
},
error: function(message) {
addonContext.ui.writeError(message, 'ERROR');
// fallback needed for support of ember-cli < 2.2.0
if (ui.writeError) {
ui.writeError(message);
} else {
ui.writeLine(message, 'ERROR');
}
}

@@ -87,0 +103,0 @@ };

2

package.json
{
"name": "ember-cli-babel",
"version": "5.1.8",
"version": "5.1.9",
"directories": {

@@ -5,0 +5,0 @@ "doc": "doc",

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