Skip to content

Commit efca048

Browse files
committed
Fix processString call
1 parent 4043c29 commit efca048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/csscomb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ module.exports = function (grunt) {
7878
// Comb it:
7979
grunt.log.ok('Sorting file "' + src + '"...');
8080
var syntax = src.split('.').pop();
81-
var combed = comb.processString(css, syntax);
81+
var combed = comb.processString(css, { syntax: syntax });
8282
grunt.file.write(f.dest, combed);
8383
});
8484
});

0 commit comments

Comments
 (0)