We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef8d157 commit f763100Copy full SHA for f763100
tasks/csscomb.js
@@ -72,15 +72,15 @@ module.exports = function (grunt) {
72
}
73
}).forEach(function (src) {
74
75
- // Get CSS from a source file:
76
- var css = grunt.file.read(src);
77
-
78
- // Comb it:
79
- grunt.log.ok('Sorting file "' + src + '"...');
80
- var syntax = src.split('.').pop();
81
- var combed = comb.processString(css, syntax);
82
- grunt.file.write(f.dest, combed);
83
- });
+ // Get CSS from a source file:
+ var css = grunt.file.read(src);
+
+ // Comb it:
+ grunt.log.ok('Sorting file "' + src + '"...');
+ var syntax = src.split('.').pop();
+ var combed = comb.processString(css, syntax);
+ grunt.file.write(f.dest, combed);
+ });
84
});
85
86
};
0 commit comments