Compare commits

...

3 Commits

Author SHA1 Message Date
Kricsleo
fc2b623d83
Merge 1fbf66dd2b8e3db01d635d3ed11fe5c1a939c8dc into ad50cba49561bf306604fc983f82e81a4eb1240c 2025-09-23 11:30:27 +08:00
alex8088
ad50cba495 release: 4.0.1 2025-09-21 17:03:52 +08:00
alex8088
b55eb725c4 perf: build compatibility target for Electron 38 2025-09-21 16:52:57 +08:00
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
### v4.0.1 (_2025-09-21_)
- perf: build compatibility target for Electron 38
### v4.0.0 (_2025-07-06_)
- refactor!: bump required node version to 20.19+, 22.12+

View File

@ -1,6 +1,6 @@
{
"name": "electron-vite",
"version": "4.0.0",
"version": "4.0.1",
"description": "Electron build tooling based on Vite",
"type": "module",
"main": "./dist/index.js",

View File

@ -69,6 +69,7 @@ export function getElectronNodeTarget(): string {
const electronVer = getElectronMajorVer()
const nodeVer = {
'38': '22.19',
'37': '22.16',
'36': '22.14',
'35': '22.14',
@ -102,6 +103,7 @@ export function getElectronChromeTarget(): string {
const electronVer = getElectronMajorVer()
const chromeVer = {
'38': '140',
'37': '138',
'36': '136',
'35': '134',