weboptimizer 2.0.1203 → 2.0.1205

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1203",
3
+ "version": "2.0.1205",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
package/type.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  /// <reference types="webpack-env" />
3
3
  import { AnyFunction, Encoding, Mapping, PlainObject, SecondParameter } from 'clientnode/type';
4
- import { FaviconOptions } from 'favicons';
4
+ import { FaviconStreamOptions } from 'favicons';
5
5
  import FaviconWebpackPlugin from 'favicons-webpack-plugin';
6
6
  import HtmlWebpackPlugin from 'html-webpack-plugin';
7
7
  import ImageMinimizerWebpackPlugin, { PluginOptions as ImageMinimizerOptions } from 'image-minimizer-webpack-plugin';
@@ -278,7 +278,7 @@ export interface ResolvedConfiguration {
278
278
  self: ExportFormat;
279
279
  };
280
280
  extensions: Extensions;
281
- favicon: Mapping<FaviconOptions> & {
281
+ favicon: Mapping<FaviconStreamOptions> & {
282
282
  logo: string;
283
283
  };
284
284
  files: {