Skip to content

Commit cd94b22

Browse files
committed
Merge pull request #13 from oswaldoacauan/patch-1
Add systax param whem combing
2 parents f293020 + 8cc712f commit cd94b22

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tasks/csscomb.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ module.exports = function (grunt) {
6868

6969
// Comb it:
7070
grunt.log.ok('Sorting file "' + src + '"...');
71-
var combed = comb.processString(css);
71+
var syntax = src.split('.').pop();
72+
var combed = comb.processString(css, syntax);
7273
grunt.file.write(f.dest, combed);
7374
});
7475
});
7576
});
76-
};
77+
};

0 commit comments

Comments
 (0)