weboptimizer 2.0.1088 → 2.0.1089
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.
- package/package.json +6 -1
- package/type.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1089",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
"@babel/eslint-parser": "*",
|
|
113
113
|
"@types/cssnano": "*",
|
|
114
114
|
"@types/ejs": "*",
|
|
115
|
+
"@types/favicons": "*",
|
|
115
116
|
"@types/html-minifier": "*",
|
|
116
117
|
"@types/html-minifier-terser": "*",
|
|
117
118
|
"@types/jest": "*",
|
|
@@ -156,6 +157,7 @@
|
|
|
156
157
|
"@babel/eslint-parser": "*",
|
|
157
158
|
"@babel/preset-react": "*",
|
|
158
159
|
"@types/ejs": "*",
|
|
160
|
+
"@types/favicons": "*",
|
|
159
161
|
"@types/html-minifier": "*",
|
|
160
162
|
"@types/jest": "*",
|
|
161
163
|
"@types/jsdom": "*",
|
|
@@ -198,6 +200,9 @@
|
|
|
198
200
|
"@types/ejs": {
|
|
199
201
|
"optional": true
|
|
200
202
|
},
|
|
203
|
+
"@types/favicons": {
|
|
204
|
+
"optional": true
|
|
205
|
+
},
|
|
201
206
|
"@types/html-minifier": {
|
|
202
207
|
"optional": true
|
|
203
208
|
},
|
package/type.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AnyFunction, Encoding, Mapping, PlainObject, SecondParameter } from 'clientnode/type';
|
|
2
|
-
import {
|
|
2
|
+
import { FaviconOptions } from 'favicons';
|
|
3
3
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
|
4
4
|
import { JSDOM } from 'jsdom';
|
|
5
5
|
import { DefinePlugin as WebpackDefinePlugin, Configuration as BaseWebpackConfiguration, IgnorePlugin as WebpackIgnorePlugin, ModuleOptions as WebpackModuleOptions, RuleSetRule as WebpackRuleSetRule, WebpackOptionsNormalized } from 'webpack';
|
|
@@ -267,7 +267,7 @@ export interface ResolvedConfiguration {
|
|
|
267
267
|
self: ExportFormat;
|
|
268
268
|
};
|
|
269
269
|
extensions: Extensions;
|
|
270
|
-
favicon: Mapping<
|
|
270
|
+
favicon: Mapping<FaviconOptions> & {
|
|
271
271
|
logo: string;
|
|
272
272
|
};
|
|
273
273
|
files: {
|