Commit 8c86c4c
authored
fix(deps): add missing webpack-dev-server override (#443)
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.1 parent 1c3b6df commit 8c86c4c
1 file changed
Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| 42 | + | |
42 | 43 | | |
43 | 44 | | |
44 | 45 | | |
| |||
0 commit comments