Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
"vite": "6.4.2",
"@xmldom/xmldom": "0.8.13",
"fast-uri": "3.1.2",
"tmp": "0.2.6"
"tmp": "0.2.6",
"esbuild": ">=0.28.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep Vite on its declared esbuild range

When the root dev/build/package scripts run through electron-vite and vite, this override makes pnpm install esbuild@0.28.1 for those tools (the lockfile now resolves both electron-vite@3.1.0 and vite@6.4.2 to 0.28.1). vite@6.4.2 declares esbuild: ^0.25.0, and the previous lockfile resolved it to 0.25.12, so forcing 0.28.x puts the main build pipeline outside the supported esbuild minor line; esbuild 0.x minor releases are treated as breaking releases. Please update Vite/electron-vite to versions that declare compatibility with 0.28.x, or use a compatible patched 0.25.x resolution if one exists, rather than overriding every consumer across minors.

Useful? React with 👍 / 👎.

}
},
"dependencies": {
Expand Down
Loading
Loading