From de23d4705d1498e70d0a6f2d283b2a0a8712d180 Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Wed, 27 May 2026 10:26:17 -0400 Subject: [PATCH] fix(deps): add missing webpack-dev-server override MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #442 (1c3b6df) added webpack-dev-server@5.2.4 to package-lock.json but the corresponding `overrides` entry never made it into package.json. `npm ci` on main now fails with "Missing: webpack-dev-server@4.15.2 from lock file" because the natural dep tree (via @wordpress/scripts) wants 4.15.2 while the lockfile has 5.2.4 with no override to bridge the gap. This breaks the release workflow — without it, the changesets action cannot install deps to refresh PR #403 or publish 4.8.5. Adding the missing override is sufficient; the lockfile is already at the correct resolution and `npm install --package-lock-only` is a no-op. Verified locally: `npm ci --dry-run` now exits 0. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index a36cbed5..384b9754 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "overrides": { "serialize-javascript": "^7.0.5", "uuid": "^11.1.1", + "webpack-dev-server": "^5.2.4", "@typescript-eslint/typescript-estree": { "minimatch": "^9.0.7" },