@serwist/webpack-plugin 9.0.0-preview.21 → 9.0.0-preview.24

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/dist/index.js CHANGED
@@ -260,7 +260,7 @@ class InjectManifest {
260
260
  } else {
261
261
  this.addSrcToAssets(compilation, parentCompiler);
262
262
  if (Array.isArray(this.config.webpackCompilationPlugins) && this.config.webpackCompilationPlugins.length > 0) {
263
- compilation.warnings.push(new Error("compileSrc is false, so the " + "webpackCompilationPlugins option will be ignored."));
263
+ compilation.warnings.push(new Error("'compileSrc' is 'false', so the 'webpackCompilationPlugins' option will be ignored."));
264
264
  }
265
265
  }
266
266
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serwist/webpack-plugin",
3
- "version": "9.0.0-preview.21",
3
+ "version": "9.0.0-preview.24",
4
4
  "type": "module",
5
5
  "description": "A plugin for your webpack build process, helping you generate a manifest of local files that should be precached.",
6
6
  "files": [
@@ -56,16 +56,16 @@
56
56
  "pretty-bytes": "6.1.1",
57
57
  "upath": "2.0.1",
58
58
  "zod": "3.22.4",
59
- "@serwist/build": "9.0.0-preview.21"
59
+ "@serwist/build": "9.0.0-preview.24"
60
60
  },
61
61
  "devDependencies": {
62
- "@types/node": "20.11.30",
62
+ "@types/node": "20.12.4",
63
63
  "@types/webpack": "5.28.5",
64
- "rollup": "4.13.0",
65
- "typescript": "5.5.0-dev.20240323",
64
+ "rollup": "4.14.0",
65
+ "typescript": "5.5.0-dev.20240404",
66
66
  "webpack": "5.91.0",
67
- "@serwist/constants": "9.0.0-preview.21",
68
- "@serwist/utils": "9.0.0-preview.21"
67
+ "@serwist/constants": "9.0.0-preview.24",
68
+ "@serwist/utils": "9.0.0-preview.24"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "typescript": ">=5.0.0",
@@ -215,7 +215,7 @@ export class InjectManifest {
215
215
  // This used to be a fatal error, but just warn at runtime because we
216
216
  // can't validate it easily.
217
217
  if (Array.isArray(this.config.webpackCompilationPlugins) && this.config.webpackCompilationPlugins.length > 0) {
218
- compilation.warnings.push(new Error("compileSrc is false, so the " + "webpackCompilationPlugins option will be ignored.") as WebpackError);
218
+ compilation.warnings.push(new Error("'compileSrc' is 'false', so the 'webpackCompilationPlugins' option will be ignored.") as WebpackError);
219
219
  }
220
220
  }
221
221
  }