@ideasonpurpose/build-tools-wordpress 2.6.1 → 2.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
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### v2.6.1
8
+
9
+ > 23 March 2026
10
+
11
+ - chore: update dependencies in package.json
12
+
7
13
  #### v2.6.0
8
14
 
9
15
  > 13 March 2026
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 2.6.1
3
+ #### Version 2.6.2
4
4
 
5
5
  [![NPM Version](https://img.shields.io/npm/v/%40ideasonpurpose%2Fbuild-tools-wordpress?logo=npm)](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
6
6
  [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/ideasonpurpose/build-tools-wordpress/npm-publish.yml?logo=github&logoColor=white)](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
@@ -87,6 +87,14 @@ export async function devserverProxy(config) {
87
87
  }
88
88
  },
89
89
 
90
+ onProxyReqWs: (proxyReq, req, socket, options, head) => {
91
+ socket.on("error", (err) => {
92
+ if (err.code !== "EPIPE") {
93
+ console.error("WebSocket proxy error:", err);
94
+ }
95
+ });
96
+ },
97
+
90
98
  onProxyRes: function (proxyRes, req, res) {
91
99
  /**
92
100
  * Update urls in files with these content-types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "Build scripts and dependencies for IOP's WordPress development environments.",
5
5
  "homepage": "https://github.com/ideasonpurpose/build-tools-wordpress#readme",
6
6
  "bugs": {