node-sass
Advanced tools
Comparing version 3.5.1 to 3.5.2
{ | ||
"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(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1485961
226
1088
14
3
70
+ Addednpmconf@^2.1.2
+ Addedconfig-chain@1.1.13(transitive)
+ Addedini@1.3.8(transitive)
+ Addednpmconf@2.1.3(transitive)
+ Addedonce@1.3.3(transitive)
+ Addedproto-list@1.2.4(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedsemver@4.3.6(transitive)
+ Addeduid-number@0.0.5(transitive)