weboptimizer 2.0.1200 → 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 (3) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +4 -4
  3. package/type.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1200",
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,10 +1,10 @@
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
- import ImageMinimizerWebpackPlugin from 'image-minimizer-webpack-plugin';
7
+ import ImageMinimizerWebpackPlugin, { PluginOptions as ImageMinimizerOptions } from 'image-minimizer-webpack-plugin';
8
8
  import { JSDOM } from 'jsdom';
9
9
  import MiniCSSExtractPlugin from 'mini-css-extract-plugin';
10
10
  import { Options as RemoveDirectoryRecursivelyOptions } from 'rimraf';
@@ -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: {
@@ -334,7 +334,7 @@ export interface ResolvedConfiguration {
334
334
  };
335
335
  htmlMinifier?: PlainObject;
336
336
  image: {
337
- content: PlainObject;
337
+ content: ImageMinimizerOptions<unknown, unknown>;
338
338
  exclude: string;
339
339
  loader: Array<string>;
340
340
  };
package/type.js CHANGED
@@ -15,7 +15,7 @@
15
15
  See https://creativecommons.org/licenses/by/3.0/deed.de
16
16
  endregion
17
17
  */
18
- // region import s
18
+ // region imports
19
19
 
20
20
  Object.defineProperty(exports, "__esModule", {
21
21
  value: true