From b78b1e95672d0ccd265e4b5abd3e6f99745cdc75 Mon Sep 17 00:00:00 2001 From: kye shimizu Date: Wed, 30 Oct 2024 14:50:55 -0400 Subject: [PATCH] perf: build compatilibity target for Electron 33 --- src/electron.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/electron.ts b/src/electron.ts index 1b5b999..53055fa 100644 --- a/src/electron.ts +++ b/src/electron.ts @@ -69,6 +69,7 @@ export function getElectronNodeTarget(): string { const electronVer = getElectronMajorVer() const nodeVer = { + '33': '20.18', '32': '20.16', '31': '20.14', '30': '20.11', @@ -102,6 +103,7 @@ export function getElectronChromeTarget(): string { const electronVer = getElectronMajorVer() const chromeVer = { + '33': '130', '32': '128', '31': '126', '30': '124',