Skip to content

Commit e20f56e

Browse files
committed
Merge pull request #25 from 1000ch/master
fix some
2 parents ef8d157 + ce727e4 commit e20f56e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ language: node_js
22
node_js:
33
- "0.10"
44
before_script:
5-
- npm install -g grunt-cli
5+
- npm install grunt-cli

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"contributors": [
1919
{
2020
"name": "Shogo Sensui",
21-
"email": "orz1000ch@gmail.com",
21+
"email": "shogo.sensui@gmail.com",
2222
"web": "http://1000ch.net/"
2323
}
2424
],

tasks/csscomb.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ module.exports = function (grunt) {
7272
}
7373
}).forEach(function (src) {
7474

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-
});
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+
});
8484
});
8585
});
8686
};

0 commit comments

Comments
 (0)