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

sass-css-stream

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sass-css-stream - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

10

index.js

@@ -6,2 +6,6 @@ var through = require( "through" );

module.exports = function( file, opts ) {
opts = opts || {};
var includePaths = opts.includePaths;
delete opts.includePaths;
var data = "";

@@ -20,3 +24,3 @@ if( file !== undefined && path.extname( file ) !== ".scss" )

try {
var sassOpts = {};
var sassOpts = opts;

@@ -26,4 +30,4 @@ sassOpts.data = data;

var pathToAdd = [ path.dirname( file ) ];
sassOpts.includePaths = Array.isArray( opts && opts.includePaths ) ?
opts.includePaths.concat( pathToAdd ) :
sassOpts.includePaths = Array.isArray( includePaths ) ?
includePaths.concat( pathToAdd ) :
pathToAdd;

@@ -30,0 +34,0 @@

{
"name": "sass-css-stream",
"version": "0.1.5",
"version": "0.1.6",
"description": "sass to css transform",

@@ -5,0 +5,0 @@ "main": "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