diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/gulp-gzip/README.md | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/gulp-gzip/README.md')
-rwxr-xr-x | node_modules/gulp-gzip/README.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/node_modules/gulp-gzip/README.md b/node_modules/gulp-gzip/README.md index 807c2c577..0d07a0c98 100755 --- a/node_modules/gulp-gzip/README.md +++ b/node_modules/gulp-gzip/README.md @@ -3,13 +3,13 @@ gulp-gzip Gzip plugin for [gulp](https://github.com/wearefractal/gulp). -#Install + # Install ``` npm install --save-dev gulp-gzip ``` -#Options +# Options ### append `Boolean` @@ -56,7 +56,7 @@ gzip({ threshold: true }) ### gzipOptions `Object` -Options object to pass through to zlib.Gzip. See [zlib documentation](http://nodejs.org/api/zlib.html#zlib_options) for more information. +Options object to pass through to zlib.Gzip. See [zlib documentation][gzip-options] for more information. ```javascript gzip({ gzipOptions: { level: 9 } }) @@ -96,7 +96,7 @@ Some files actually get larger after compression. If true, this option passes al gzip({ skipGrowingFiles : true }) ``` -#Examples +# Examples ```javascript var gulp = require('gulp'); @@ -140,3 +140,6 @@ gulp.task('tarball', function() { ``` [More examples](https://github.com/jstuckey/gulp-gzip/tree/master/examples). + + + [gzip-options]: https://nodejs.org/api/zlib.html#zlib_class_options |