Socket
Socket
Sign inDemoInstall

node-sass

Package Overview
Dependencies
194
Maintainers
7
Versions
148
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.5.0 to 4.5.1

76

CHANGELOG.md

@@ -0,1 +1,77 @@

## v4.5.0
https://github.com/sass/node-sass/releases/tag/v4.5.0
## v4.4.0
https://github.com/sass/node-sass/releases/tag/v4.4.0
## v4.3.0
https://github.com/sass/node-sass/releases/tag/v4.3.0
## v4.2.0
https://github.com/sass/node-sass/releases/tag/v4.2.0
## v4.1.1
https://github.com/sass/node-sass/releases/tag/v4.1.1
## v4.1.0
https://github.com/sass/node-sass/releases/tag/v4.1.0
## v4.0.0
https://github.com/sass/node-sass/releases/tag/v4.0.0
## v3.13.1
https://github.com/sass/node-sass/releases/tag/v3.13.1
## v3.13.0
https://github.com/sass/node-sass/releases/tag/v3.13.0
## v3.12.5
https://github.com/sass/node-sass/releases/tag/v3.12.5
## v3.12.4
https://github.com/sass/node-sass/releases/tag/v3.12.4
## v3.12.3
https://github.com/sass/node-sass/releases/tag/v3.12.3
## v3.12.2
https://github.com/sass/node-sass/releases/tag/v3.12.2
## v3.12.1
https://github.com/sass/node-sass/releases/tag/v3.12.1
## v3.12.0
https://github.com/sass/node-sass/releases/tag/v3.12.0
## v3.11.3
https://github.com/sass/node-sass/releases/tag/v3.11.3
## v3.11.2
https://github.com/sass/node-sass/releases/tag/v3.11.2
## v3.11.1
https://github.com/sass/node-sass/releases/tag/v3.11.1
## v3.11.0
https://github.com/sass/node-sass/releases/tag/v3.11.0
## v3.10.1

@@ -2,0 +78,0 @@

2

lib/errors.js

@@ -28,3 +28,3 @@ /*!

'This usually happens because your environment has changed since running `npm install`.',
'Run `npm rebuild node-sass` to build the binding for your current environment.',
'Run `npm rebuild node-sass --force` to build the binding for your current environment.',
].join('\n');

@@ -31,0 +31,0 @@ }

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

case 51: return 'Node.js 7.x';
case 53: return 'Node.js 8.x';
default: return false;

@@ -74,0 +75,0 @@ }

{
"name": "node-sass",
"version": "4.5.0",
"version": "4.5.1",
"libsass": "3.5.0.beta.2",

@@ -71,3 +71,3 @@ "description": "Wrapper around libsass",

"npmlog": "^4.0.0",
"request": "^2.61.0",
"request": "^2.79.0",
"sass-graph": "^2.1.1",

@@ -74,0 +74,0 @@ "stdout-stream": "^1.4.0"

@@ -43,3 +43,3 @@ # node-sass

Compiling versions 0.9.4 and above on Windows machines requires [Visual Studio 2013 WD](https://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-desktop). If you have multiple VS versions, use ```npm install``` with the ```--msvs_version=2013``` flag also use this flag when rebuilding the module with node-gyp or nw-gyp.
Compiling versions 0.9.4 and above on Windows machines requires [Visual Studio 2013 WD](https://www.microsoft.com/en-us/download/details.aspx?id=44914). If you have multiple VS versions, use ```npm install``` with the ```--msvs_version=2013``` flag also use this flag when rebuilding the module with node-gyp or nw-gyp.

@@ -46,0 +46,0 @@ **Having installation troubles? Check out our [Troubleshooting guide](/TROUBLESHOOTING.md).**

@@ -96,3 +96,4 @@ /*!

arch: process.arch,
platform: process.platform
platform: process.platform,
force: process.env.npm_config_force === 'true',
};

@@ -99,0 +100,0 @@

@@ -11,3 +11,3 @@ /*!

istanbul = require('istanbul'),
sourcefiles = ['index.js', 'extensions.js', 'render.js', 'errors.js'],
sourcefiles = ['index.js', 'binding.js', 'extensions.js', 'render.js', 'errors.js'],
summary= istanbul.Report.create('text-summary'),

@@ -14,0 +14,0 @@ lcov = istanbul.Report.create('lcovonly', { dir: path.join('coverage') }),

@@ -13,3 +13,4 @@ /*eslint new-cap: ["error", {"capIsNewExceptions": ["Color"]}]*/

it('should be useful', function() {
process.env.SASS_BINARY_NAME = 'Linux-x64-48';
process.env.SASS_BINARY_NAME = 'unknown-x64-48';
assert.throws(

@@ -46,7 +47,3 @@ function() { binding(etx); },

describe('with an unsupported architecture', function() {
var prevValue;
beforeEach(function() {
prevValue = process.arch;
Object.defineProperty(process, 'arch', {

@@ -59,3 +56,3 @@ value: 'foo',

Object.defineProperty(process, 'arch', {
value: prevValue,
value: 'x64',
});

@@ -80,7 +77,3 @@ });

describe('with an unsupported platform', function() {
var prevValue;
beforeEach(function() {
prevValue = process.platform;
Object.defineProperty(process, 'platform', {

@@ -93,3 +86,3 @@ value: 'bar',

Object.defineProperty(process, 'platform', {
value: prevValue,
value: 'darwin',
});

@@ -114,7 +107,3 @@ });

describe('with an unsupported runtime', function() {
var prevValue;
beforeEach(function() {
prevValue = process.versions.modules;
Object.defineProperty(process.versions, 'modules', {

@@ -127,3 +116,3 @@ value: 'baz',

Object.defineProperty(process.versions, 'modules', {
value: prevValue,
value: 51,
});

@@ -130,0 +119,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc