Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var css = rework(css_code);
css.use(svg(path.dirname(target)));
if (rework_flags.autoprefixer) {
css.use(autoprefixer(rework_flags.autoprefixer).rework);
}
if (rework_flags.at2x) {
css.use(rework.at2x());
}
if (rework_flags.colors) {
css.use(rework.colors());
}
if (rework_flags.extend) {
css.use(rework.extend());
}
if (rework_flags.ease) {
css.use(rework.ease());
}
if (rework_flags.references) {
css.use(rework.references());
}
var css_result = css.toString({
compress: minify
});
fs.writeFile(target_filename, css_result, callback);
};
Style.prototype.toString = function(){
this.use(rework.mixin(mixins));
this.use(rework.keyframes());
this.use(rework.ease());
this.use(rework.prefixValue('linear-gradient'));
this.use(rework.prefixValue('radial-gradient'));
this.use(rework.prefixValue('transform'));
this.use(rework.prefix(props));
this.use(rework.colors());
this.use(rework.references());
this.use(rework.at2x());
this.use(rework.extend());
return this.rework.toString({ compress: this.compress });
};
function compile(css) {
css = whitespace(css);
return rework(css)
.vendors(vendors)
.use(rework.colors())
.use(rework.references())
.use(rework.keyframes())
.use(rework.ease())
.use(rework.prefixValue('transform'))
.use(rework.prefix(props))
.use(rework.mixin(mixins))
.use(rework.at2x())
.toString();
}
Style.prototype.toString = function(){
this.use(rework.mixin(mixins));
this.use(rework.keyframes());
this.use(rework.ease());
this.use(rework.prefixValue('linear-gradient'));
this.use(rework.prefixValue('radial-gradient'));
this.use(rework.prefixValue('transform'));
this.use(rework.prefix(props));
this.use(rework.colors());
this.use(rework.references());
this.use(rework.at2x());
this.use(rework.extend());
return this.rework.toString({ compress: this.compress });
};