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

broccoli-eyeglass

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-eyeglass - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

19

lib/broccoli_sass_compiler.js

@@ -261,10 +261,9 @@ var path = require('path');

var failure = this.handleFailure.bind(this, details);
return new RSVP.Promise(function(resolve, reject) {
this.events.emit("compiling", details)
.then(function() {
sass(details.options)
.then(success, failure)
.then(resolve, reject);
});
}.bind(this));
return this.events.emit("compiling", details)
.then(function() {
return sass(details.options)
.then(success, failure);
});
},

@@ -283,6 +282,6 @@

var location = " at " + error.file + ":" + error.line + ":" + error.column;
RSVP.rethrow(new Error(message + "\n" + location));
// TODO: implement fullException
throw new Error(message + "\n" + location)
});
return RSVP.allSettled([failed, rethrow]);
return rethrow;
},

@@ -289,0 +288,0 @@

{
"name": "broccoli-eyeglass",
"description": "Sass compiler for Broccoli with Eyeglass Integration",
"version": "1.1.1",
"version": "1.1.2",
"author": "Chris Eppstein <chris@eppsteins.net>",

@@ -6,0 +6,0 @@ "main": "lib/index.js",

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