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

node-sass

Package Overview
Dependencies
Maintainers
7
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-sass - npm Package Compare versions

Comparing version 3.5.1 to 3.5.2

src/libsass/.editorconfig

3

package.json
{
"name": "node-sass",
"version": "3.5.1",
"version": "3.5.2",
"libsass": "3.3.5",

@@ -67,2 +67,3 @@ "description": "Wrapper around libsass",

"node-gyp": "^3.3.1",
"npmconf": "^2.1.2",
"sass-graph": "^2.1.1"

@@ -69,0 +70,0 @@ },

@@ -8,2 +8,3 @@ /*!

mkdir = require('mkdirp'),
npmconf = require('npmconf'),
path = require('path'),

@@ -65,13 +66,21 @@ got = require('got'),

function applyProxy(options, cb) {
var env = process.env;
npmconf.load({}, function (er, conf) {
var proxyUrl;
options.proxy = env.npm_config_https_proxy ||
env.npm_config_proxy ||
env.npm_config_http_proxy ||
env.HTTPS_PROXY ||
env.https_proxy ||
env.HTTP_PROXY ||
env.http_proxy;
if (!er) {
proxyUrl = conf.get('https-proxy') ||
conf.get('proxy') ||
conf.get('http-proxy');
}
cb(options);
var env = process.env;
options.proxy = proxyUrl ||
env.HTTPS_PROXY ||
env.https_proxy ||
env.HTTP_PROXY ||
env.http_proxy;
cb(options);
});
}

@@ -117,5 +126,5 @@

/**
* If binary does not exist, download it
* If binary does not exsit, download it
*/
checkAndDownloadBinary();
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