Skip to content

Commit a7517b8

Browse files
committed
Update clean-css-processor.js
1 parent f5c2399 commit a7517b8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lib/clean-css-processor.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ module.exports = function(less) {
1919
options.keepSpecialComments = "*";
2020
}
2121
options.processImport = false;
22-
options.noRebase = true;
23-
if (options.noAdvanced === undefined) {
24-
options.noAdvanced = true;
22+
23+
if (options.rebase === undefined) {
24+
options.rebase = false;
25+
}
26+
27+
if (options.advanced === undefined) {
28+
options.advanced = false;
2529
}
2630

2731
var output = new CleanCSS(options).minify(css);

0 commit comments

Comments
 (0)