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

lessify

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lessify - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

index.js

@@ -8,3 +8,3 @@ var less = require("less")

if (/\.less$/i.test(file) === false) {
return through();
return through();
}

@@ -27,3 +27,3 @@

if (err) {
self.emit('error', err);
self.emit('error', new Error(err.message + ': ' + err.filename + '(' + err.line + ')'));
} else {

@@ -30,0 +30,0 @@ self.queue(jsToLoad(css));

{
"name": "lessify",
"version": "0.4.0",
"version": "0.4.1",
"description": "Middleware and Browserify transform for less files",

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

@@ -56,3 +56,3 @@ var test = require('tape')

s.write('.}');
t.throws(function() { s.end(); }, Error, 'should throw on invalid less');
t.throws(function() { s.end(); }, new RegExp('missing opening `\\{`: test\\.less\\(1\\)'), 'should throw on invalid less');
});
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