Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #88 from Kingdutch/patch-1
Browse files Browse the repository at this point in the history
Update README.md as per #86
  • Loading branch information
sindresorhus committed Feb 16, 2015
2 parents 7f7ede6 + 3cc441d commit a95198d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -21,7 +21,7 @@
```javascript
var gutil = require('gulp-util');

gutil.log('stuff happened', 'Really it did', gutil.colors.cyan('123'));
gutil.log('stuff happened', 'Really it did', gutil.colors.magenta('123'));
gutil.beep();

gutil.replaceExtension('file.coffee', '.js'); // file.js
Expand All @@ -37,9 +37,10 @@ gutil.template('test <%= name %> <%= file.path %>', opt) // test todd /js/hi.js

Logs stuff. Already prefixed with [gulp] and all that. If you pass in multiple arguments it will join them by a space.

The default gulp coloring using gutil.colors.<color>:
```
values (files, module names, etc.) = magenta
numbers (times, counts, etc) = cyan
values (files, module names, etc.) = cyan
numbers (times, counts, etc) = magenta
```

### colors
Expand Down

0 comments on commit a95198d

Please sign in to comment.