Skip to content
This repository was archived by the owner on Mar 28, 2018. It is now read-only.

Commit 5ed3811

Browse files
committed
Update README.md
reformat
1 parent 03c0e3a commit 5ed3811

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,20 @@ var output = postcss([
2828
### Usage with Gulp.js
2929

3030
```js
31-
gulp.task('cssstats', function(){
31+
gulp.task('cssstats', function() {
3232
var cssstats = require('postcss-cssstats');
3333
var postcss = require('gulp-postcss');
3434
return gulp
35-
.src('/path/to/file.css')
35+
.src('app/_design/less/index.css')
3636
.pipe(
3737
postcss([
3838
cssstats(
3939
function(stats) {
40-
console.log(stats);
41-
})
42-
])
43-
);
40+
console.log(stats);
41+
}
42+
)
43+
])
44+
);
4445
});
4546
```
4647

0 commit comments

Comments
 (0)