weboptimizer 2.0.1487 → 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.
Files changed (2) hide show
  1. package/configurator.js +1 -0
  2. package/package.json +8 -2
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.1487",
3
+ "version": "2.0.1488",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -125,7 +125,7 @@
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.10",
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",
@@ -809,6 +809,9 @@
809
809
  "modules": "__implicit__"
810
810
  },
811
811
  "ignorePattern": [
812
+ {
813
+ "resourceRegExp": "(.*/)?deprecated/.+"
814
+ },
812
815
  {
813
816
  "resourceRegExp": "(.*/)?exclude/.+"
814
817
  }
@@ -1317,6 +1320,7 @@
1317
1320
  "ignore": [
1318
1321
  ".cache",
1319
1322
  ".git",
1323
+ "exclude",
1320
1324
  {
1321
1325
  "__evaluate__": "self.path.apiDocumentation"
1322
1326
  }
@@ -1553,6 +1557,8 @@
1553
1557
  "watchOptions": {
1554
1558
  "ignored": [
1555
1559
  "./*.js",
1560
+ "**/deprecated",
1561
+ "**/exclude",
1556
1562
  "**/node_modules",
1557
1563
  "**/package.json",
1558
1564
  {