@plaudit/webpack-extensions 3.6.1 → 3.6.2

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/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.6.2] - 2026-04-09
9
+ ### Changed
10
+ - The error message for multiple render files to include instructions for solving it
11
+
8
12
  ## [3.6.1] - 2026-04-06
9
13
  ### Fixed
10
14
  - The emitter for the Extensions v1 format including an extra path element
@@ -412,7 +412,7 @@ class EnhancedBlockJSONPlugin extends AbstractBiPhasicGroupAndEntryPlugin_1.Abst
412
412
  }
413
413
  delete blockJson[invalidTemplateLocation];
414
414
  if (renderTemplate.length > 1) {
415
- compilation.warnings.push((0, shared_1.newWebpackErrorForFile)("Encountered a block with multiple possible render files", (0, node_path_1.join)(sourceDir, 'block.json')));
415
+ compilation.warnings.push((0, shared_1.newWebpackErrorForFile)("Encountered a block with multiple possible render files. Please set the render key in block.json to the proper one", (0, node_path_1.join)(sourceDir, 'block.json')));
416
416
  blockJson[validTemplateLocation] = renderTemplate.find(p => p.endsWith(".php")) ?? renderTemplate[0];
417
417
  }
418
418
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/webpack-extensions",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "/dist",
@@ -53,7 +53,7 @@
53
53
  "fork-ts-checker-webpack-plugin": "^9.1.0",
54
54
  "http-proxy-middleware": "^3.0.5",
55
55
  "json2php": "^0.0.12",
56
- "postcss": "^8.5.8",
56
+ "postcss": "^8.5.9",
57
57
  "postcss-calc": "^10.1.1",
58
58
  "postcss-functions": "^4.0.2",
59
59
  "postcss-import": "^16.1.1",
@@ -63,7 +63,7 @@
63
63
  "postcss-property-lookup": "^3.0.0",
64
64
  "postcss-reporter": "^7.1.0",
65
65
  "postcss-url": "^10.1.3",
66
- "webpack": "^5.105.4",
66
+ "webpack": "^5.106.0",
67
67
  "webpack-remove-empty-scripts": "^1.1.1",
68
68
  "xml-formatter": "^3.7.0"
69
69
  },