weboptimizer 2.0.1486 → 2.0.1488
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/configurator.js +1 -0
- package/package.json +13 -10
package/configurator.js
CHANGED
|
@@ -286,6 +286,7 @@ var load = exports.load = function load(context) {
|
|
|
286
286
|
resolvedConfiguration.needed = {
|
|
287
287
|
javaScript: configuration.debug && ['serve', 'test:browser'].includes(resolvedConfiguration.givenCommandLineArguments[2])
|
|
288
288
|
};
|
|
289
|
+
|
|
289
290
|
/// region determine which asset types are needed
|
|
290
291
|
for (var _i6 = 0, _Object$values = Object.values(resolvedConfiguration.injection.entry.normalized); _i6 < _Object$values.length; _i6++) {
|
|
291
292
|
var chunk = _Object$values[_i6];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1488",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
},
|
|
90
90
|
"runkitExample": "require('@babel/runtime/package.json')\n\nconst {default: main} = require('weboptimizer')\n\nawait main('./', './', ['clear'])",
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@babel/core": "^7.24.
|
|
92
|
+
"@babel/core": "^7.24.9",
|
|
93
93
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
94
94
|
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
95
95
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
@@ -125,13 +125,13 @@
|
|
|
125
125
|
"@types/html-minifier": "^4.0.5",
|
|
126
126
|
"@types/html-minifier-terser": "^7.0.2",
|
|
127
127
|
"@types/imagemin": "^9.0.0",
|
|
128
|
-
"@types/node": "^20.14.
|
|
128
|
+
"@types/node": "^20.14.11",
|
|
129
129
|
"@types/postcss-import": "^14.0.3",
|
|
130
130
|
"@types/postcss-url": "^10.0.4",
|
|
131
131
|
"@types/webpack-env": "^1.18.5",
|
|
132
132
|
"@types/webpack-sources": "^3.2.3",
|
|
133
|
-
"@typescript-eslint/eslint-plugin": "^7.16.
|
|
134
|
-
"@typescript-eslint/parser": "^7.16.
|
|
133
|
+
"@typescript-eslint/eslint-plugin": "^7.16.1",
|
|
134
|
+
"@typescript-eslint/parser": "^7.16.1",
|
|
135
135
|
"css-loader": "^7.1.2",
|
|
136
136
|
"cssnano": "^7.0.4",
|
|
137
137
|
"documentation-website": "^1.0.328",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"stylelint": "^16.7.0",
|
|
160
160
|
"stylelint-config-standard": "^36.0.1",
|
|
161
161
|
"stylelint-config-standard-scss": "^13.1.0",
|
|
162
|
-
"typescript-eslint": "^7.16.
|
|
162
|
+
"typescript-eslint": "^7.16.1",
|
|
163
163
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
164
164
|
"workbox-webpack-plugin": "^7.1.0"
|
|
165
165
|
},
|
|
@@ -552,10 +552,7 @@
|
|
|
552
552
|
},
|
|
553
553
|
"historyApiFallback": true,
|
|
554
554
|
"host": "0.0.0.0",
|
|
555
|
-
"hot":
|
|
556
|
-
"#": "Indicates whether to activate the developments hot module replacement feature.",
|
|
557
|
-
"__evaluate__": "self.debug"
|
|
558
|
-
},
|
|
555
|
+
"hot": false,
|
|
559
556
|
"liveReload": true,
|
|
560
557
|
"port": 8080,
|
|
561
558
|
"server": "http",
|
|
@@ -812,6 +809,9 @@
|
|
|
812
809
|
"modules": "__implicit__"
|
|
813
810
|
},
|
|
814
811
|
"ignorePattern": [
|
|
812
|
+
{
|
|
813
|
+
"resourceRegExp": "(.*/)?deprecated/.+"
|
|
814
|
+
},
|
|
815
815
|
{
|
|
816
816
|
"resourceRegExp": "(.*/)?exclude/.+"
|
|
817
817
|
}
|
|
@@ -1320,6 +1320,7 @@
|
|
|
1320
1320
|
"ignore": [
|
|
1321
1321
|
".cache",
|
|
1322
1322
|
".git",
|
|
1323
|
+
"exclude",
|
|
1323
1324
|
{
|
|
1324
1325
|
"__evaluate__": "self.path.apiDocumentation"
|
|
1325
1326
|
}
|
|
@@ -1556,6 +1557,8 @@
|
|
|
1556
1557
|
"watchOptions": {
|
|
1557
1558
|
"ignored": [
|
|
1558
1559
|
"./*.js",
|
|
1560
|
+
"**/deprecated",
|
|
1561
|
+
"**/exclude",
|
|
1559
1562
|
"**/node_modules",
|
|
1560
1563
|
"**/package.json",
|
|
1561
1564
|
{
|