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

gulp-dart-scss

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-dart-scss - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

12

index.js

@@ -19,6 +19,11 @@ const through2 = require("through2");

// Ignore _name.scss files
if (path.basename(file.path).indexOf("_") === 0) {
return callback();
}
(async () => {
try {
options.sourceMap = file.sourceMap ? file.path : false;
options.file = options.file || file.path;
options.file = file.path || options.file;

@@ -46,5 +51,6 @@ const result = await dartSass.renderSync(options);

} catch (error) {
return callback(
new pluginError("gulp-dart-scss", error, { fileName: file.path })
process.stderr.write(
`${new pluginError("gulp-dart-scss", error.message).toString()} \r\n`
);
return callback();
}

@@ -51,0 +57,0 @@ })();

{
"name": "gulp-dart-scss",
"version": "1.0.1",
"version": "1.0.2",
"description": "Gulp plugin to compile Sass using the Dart Sass compiler.",

@@ -5,0 +5,0 @@ "author": "Kasper Hesthaven",

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