weboptimizer 2.0.1453 → 2.0.1456
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 +9 -9
- package/webpackConfigurator.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1456",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"babel-loader": "^9.1.3",
|
|
97
97
|
"babel-plugin-transform-modern-regexp": "^0.0.6",
|
|
98
98
|
"babel-preset-minify": "^0.5.2",
|
|
99
|
-
"clientnode": "^3.0.
|
|
99
|
+
"clientnode": "^3.0.1138",
|
|
100
100
|
"ejs": "^3.1.9",
|
|
101
101
|
"exports-loader": "^5.0.0",
|
|
102
102
|
"extract-loader": "^5.1.0",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"jest-environment-jsdom": "^29.7.0",
|
|
109
109
|
"rimraf": "^5.0.5",
|
|
110
110
|
"script-loader": "^0.7.2",
|
|
111
|
-
"typescript": "^5.
|
|
111
|
+
"typescript": "^5.4.2",
|
|
112
112
|
"webpack": "^5.90.3",
|
|
113
113
|
"webpack-cli": "^5.1.4",
|
|
114
114
|
"webpack-sources": "^3.2.3"
|
|
@@ -120,19 +120,19 @@
|
|
|
120
120
|
"@types/html-minifier": "^4.0.5",
|
|
121
121
|
"@types/html-minifier-terser": "^7.0.2",
|
|
122
122
|
"@types/imagemin": "^8.0.5",
|
|
123
|
-
"@types/node": "^20.11.
|
|
123
|
+
"@types/node": "^20.11.26",
|
|
124
124
|
"@types/postcss-import": "^14.0.3",
|
|
125
125
|
"@types/postcss-url": "^10.0.4",
|
|
126
126
|
"@types/webpack-env": "^1.18.4",
|
|
127
127
|
"@types/webpack-sources": "^3.2.3",
|
|
128
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
129
|
-
"@typescript-eslint/parser": "^7.
|
|
128
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
129
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
130
130
|
"css-loader": "^6.10.0",
|
|
131
|
-
"cssnano": "^6.0
|
|
131
|
+
"cssnano": "^6.1.0",
|
|
132
132
|
"documentation-website": "^1.0.326",
|
|
133
133
|
"eslint": "^8.57.0",
|
|
134
134
|
"eslint-config-google": "^0.14.0",
|
|
135
|
-
"eslint-plugin-jsdoc": "^48.2.
|
|
135
|
+
"eslint-plugin-jsdoc": "^48.2.1",
|
|
136
136
|
"favicons": "^7.1.5",
|
|
137
137
|
"favicons-webpack-plugin": "^6.0.1",
|
|
138
138
|
"image-minimizer-webpack-plugin": "^4.0.0",
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"postcss-fontpath": "^1.0.0",
|
|
146
146
|
"postcss-import": "^16.0.1",
|
|
147
147
|
"postcss-loader": "^8.1.1",
|
|
148
|
-
"postcss-preset-env": "^9.
|
|
148
|
+
"postcss-preset-env": "^9.5.0",
|
|
149
149
|
"postcss-sprites": "^4.2.1",
|
|
150
150
|
"postcss-url": "^10.1.3",
|
|
151
151
|
"shx": "^0.3.4",
|
package/webpackConfigurator.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { WebpackConfiguration } from './type';
|
|
2
|
-
export declare const optionalRequire: <T = unknown>(id: string) =>
|
|
2
|
+
export declare const optionalRequire: <T = unknown>(id: string) => null | T;
|
|
3
3
|
export declare let webpackConfiguration: WebpackConfiguration;
|
|
4
4
|
export default webpackConfiguration;
|