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.2.2 to 0.2.3

12

compile.js

@@ -208,2 +208,3 @@ /**

content = before( content, file, [ file.dirname ].concat( paths ) );
content = fixPath(content, file);

@@ -222,2 +223,6 @@ delete stack[ file.realpath ];

var after = compile.after = function( content, file, paths ) {
return content;
};
var fixPath = compile.fixPath = function(content, file) {
// 处理,解决资源引用路径问题。

@@ -227,2 +232,3 @@ content = fis.compile.extCss(content);

return content.replace(fis.compile.lang.reg, function(all, type, value) {
var info = fis.uri(value, file.dirname);

@@ -234,4 +240,8 @@

if (type === 'embed' || type === 'jsEmbed') {
value = fis.compile.lang[type].ld + value + fis.compile.lang[type].rd;
}
return value;
});
};
}

2

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

@@ -6,0 +6,0 @@ "homepage" : "http://fis.baidu.com/",

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