Skip to content

Commit

Permalink
modify README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
leidottw committed Jun 14, 2016
1 parent 16e3593 commit 1a996b4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# gulp-pngquant

## Installation

```bash
npm install gulp-pngquant
```

## Usage

```js
const gulp = require('gulp');
const gulpPngquant = require('gulp-pngquant');

Expand All @@ -9,4 +20,5 @@ gulp.task('compress', function() {
.pipe(gulp.dest('./compressed/'));
});

gulp.task('default', ['compress']);
gulp.task('default', ['compress']);
```

0 comments on commit 1a996b4

Please sign in to comment.