Socket
Socket
Sign inDemoInstall

sass-graph

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sass-graph - npm Package Compare versions

Comparing version 3.0.3 to 3.0.4

4

CHANGELOG.md

@@ -15,3 +15,7 @@ # Change Log

## [3.0.4]
### Fixes
- don't crash on non-atomic saves (@adnelson, #101)
## [3.0.3]

@@ -18,0 +22,0 @@ ### Dependencies

2

package.json
{
"name": "sass-graph",
"version": "3.0.3",
"version": "3.0.4",
"description": "Parse sass files and extract a graph of imports",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -55,3 +55,5 @@ 'use strict';

_.each(glob.sync(dir+'/**/*.@('+this.extensions.join('|')+')', { dot: true, nodir: true, follow: this.follow }), function(file) {
graph.addFile(path.resolve(file));
try {
graph.addFile(path.resolve(file));
} catch (e) {}
});

@@ -58,0 +60,0 @@ }

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