weboptimizer 2.0.1563 → 2.0.1565

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1563",
3
+ "version": "2.0.1565",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -120,28 +120,28 @@
120
120
  "devDependencies": {
121
121
  "@babel/cli": "^7.26.4",
122
122
  "@babel/eslint-parser": "^7.26.8",
123
- "@stylistic/eslint-plugin": "^4.0.1",
124
- "@stylistic/eslint-plugin-ts": "^4.0.1",
123
+ "@stylistic/eslint-plugin": "^4.1.0",
124
+ "@stylistic/eslint-plugin-ts": "^4.1.0",
125
125
  "@types/ejs": "^3.1.5",
126
126
  "@types/eslint": "^9.6.1",
127
127
  "@types/html-minifier": "^4.0.5",
128
128
  "@types/html-minifier-terser": "^7.0.2",
129
129
  "@types/imagemin": "^9.0.1",
130
- "@types/node": "^22.13.4",
130
+ "@types/node": "^22.13.5",
131
131
  "@types/postcss-import": "^14.0.3",
132
132
  "@types/postcss-url": "^10.0.4",
133
133
  "@types/webpack-env": "^1.18.8",
134
134
  "@types/webpack-sources": "^3.2.3",
135
- "@typescript-eslint/parser": "^8.24.1",
135
+ "@typescript-eslint/parser": "^8.25.0",
136
136
  "css-loader": "^7.1.2",
137
137
  "cssnano": "^7.0.6",
138
138
  "documentation-website": "^1.0.344",
139
- "eslint": "^9.20.1",
139
+ "eslint": "^9.21.0",
140
140
  "eslint-config-google": "^0.14.0",
141
141
  "eslint-plugin-jsdoc": "^50.6.3",
142
142
  "favicons": "^7.2.0",
143
143
  "favicons-webpack-plugin": "^6.0.1",
144
- "globals": "^15.15.0",
144
+ "globals": "^16.0.0",
145
145
  "image-minimizer-webpack-plugin": "^4.1.3",
146
146
  "jest": "^29.7.0",
147
147
  "jsdoc": "^4.0.4",
@@ -152,7 +152,7 @@
152
152
  "postcss-fontpath": "^1.0.0",
153
153
  "postcss-import": "^16.1.0",
154
154
  "postcss-loader": "^8.1.1",
155
- "postcss-preset-env": "^10.1.4",
155
+ "postcss-preset-env": "^10.1.5",
156
156
  "postcss-sprites": "^4.2.1",
157
157
  "postcss-url": "^10.1.3",
158
158
  "shx": "^0.3.4",
@@ -160,7 +160,7 @@
160
160
  "stylelint": "^16.14.1",
161
161
  "stylelint-config-standard": "^37.0.0",
162
162
  "stylelint-config-standard-scss": "^14.0.0",
163
- "typescript-eslint": "^8.24.1",
163
+ "typescript-eslint": "^8.25.0",
164
164
  "typescript-plugin-css-modules": "^5.1.0",
165
165
  "workbox-webpack-plugin": "^7.3.0"
166
166
  },
@@ -1099,7 +1099,7 @@
1099
1099
  },
1100
1100
  "compress": {
1101
1101
  "html": {
1102
- "__evaluate__": "type && type.includes('html') && self.module.optimizer.htmlMinifier"
1102
+ "__evaluate__": "self.module.optimizer.htmlMinifier"
1103
1103
  },
1104
1104
  "javaScript": {
1105
1105
  "__evaluate__": "self.module.optimizer.babelMinify.module"
@@ -711,7 +711,11 @@ var genericLoader = {
711
711
  test: /^(?!.+\.html\.ejs$).+\.ejs$/i,
712
712
  use: _module.preprocessor.ejs.additional.pre.map(createEvaluateMapper('ejs')).concat({
713
713
  loader: _module.preprocessor.ejs.loader,
714
- options: _module.preprocessor.ejs.options || {}
714
+ options: (0, _clientnode.extend)(true, _module.preprocessor.ejs.options || {}, {
715
+ compress: {
716
+ html: false
717
+ }
718
+ })
715
719
  }, _module.preprocessor.ejs.additional.post.map(createEvaluateMapper('ejs')))
716
720
  },
717
721
  // endregion