diff --git a/README.md b/README.md index 0f0fad6..994c60f 100644 --- a/README.md +++ b/README.md @@ -40,17 +40,17 @@ And run `webpack` via your preferred method. ## Options -| Name | Type | Default | Description | -| :---------------------------------------------: | :---------------------------------------: | :------------: | :------------------------------------------------------------------------------------------------------------ | -| **[`test`](#test)** | `{String\|RegExp\|Array}` | `undefined` | Include all assets that pass test assertion | -| **[`include`](#include)** | `{String\|RegExp\|Array}` | `undefined` | Include all assets matching any of these conditions | -| **[`exclude`](#exclude)** | `{String\|RegExp\|Array}` | `undefined` | Exclude all assets matching any of these conditions | -| **[`algorithm`](#algorithm)** | `{String\|Function}` | `gzip` | The compression algorithm/function | -| **[`compressionOptions`](#compressionoptions)** | `{Object}` | `{ level: 9 }` | Compression options for `algorithm` | -| **[`threshold`](#threshold)** | `{Number}` | `0` | Only assets bigger than this size are processed (in bytes) | -| **[`minRatio`](#minratio)** | `{Number}` | `0.8` | Only assets that compress better than this ratio are processed (`minRatio = Compressed Size / Original Size`) | -| **[`filename`](#filename)** | `{String\|Function}` | `[base].gz` | The target asset filename. | -| **[`cache`](#cache)** | `{Boolean}` | `true` | Enable file caching | +| Name | Type | Default | Description | +| :---------------------------------------------: | :---------------------------------------: | :---------------: | :------------------------------------------------------------------------------------------------------------ | +| **[`test`](#test)** | `{String\|RegExp\|Array}` | `undefined` | Include all assets that pass test assertion | +| **[`include`](#include)** | `{String\|RegExp\|Array}` | `undefined` | Include all assets matching any of these conditions | +| **[`exclude`](#exclude)** | `{String\|RegExp\|Array}` | `undefined` | Exclude all assets matching any of these conditions | +| **[`algorithm`](#algorithm)** | `{String\|Function}` | `gzip` | The compression algorithm/function | +| **[`compressionOptions`](#compressionoptions)** | `{Object}` | `{ level: 9 }` | Compression options for `algorithm` | +| **[`threshold`](#threshold)** | `{Number}` | `0` | Only assets bigger than this size are processed (in bytes) | +| **[`minRatio`](#minratio)** | `{Number}` | `0.8` | Only assets that compress better than this ratio are processed (`minRatio = Compressed Size / Original Size`) | +| **[`filename`](#filename)** | `{String\|Function}` | `[path][base].gz` | The target asset filename. | +| **[`cache`](#cache)** | `{Boolean}` | `true` | Enable file caching | ### `test`