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

fis-parser-sass

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fis-parser-sass - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

14

index.js

@@ -10,5 +10,7 @@ /*

var root = fis.project.getProjectPath();
var compile = require('./compile.js');
var sass = require('fis-sass');
var path = require('path');
// var compile = require('./compile.js');
module.exports = function(content, file, conf){

@@ -24,3 +26,11 @@ var opts = fis.util.clone(conf);

return compile( content, file, opts );
opts.data = content;
if (file.ext === '.sass') {
opts.sassSyntax = true;
}
return sass.renderSync(opts);
// return compile( content, file, opts );
};

4

package.json
{
"name" : "fis-parser-sass",
"description" : "A parser plugin for fis to compile sass file.",
"version" : "0.1.3",
"version" : "0.1.4",
"author" : "FIS Team <fis@baidu.com>",

@@ -20,4 +20,4 @@ "homepage" : "http://fis.baidu.com/",

"dependencies" : {
"fis-sass" : "0.1.15"
"fis-sass" : "0.1.17"
}
}
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