Skip to content

Commit 1dae5e8

Browse files
chore(release): unblock workflows for update electron COMPASS-9075 (#6779)
* code * empty * Update scripts/update-electron.js Co-authored-by: Sergey Petushkov <[email protected]> * plug in ticket --------- Co-authored-by: Sergey Petushkov <[email protected]>
1 parent a217ed9 commit 1dae5e8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/update-electron.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ async function main() {
100100
electronVersionRange
101101
);
102102

103-
const latestNodeAbiVersion = await getLatestVersion('node-abi');
103+
// TODO(COMPASS-9098): Latest version of node-abi depends on Node.js 22. We are on 20 and will stay on this version until our version of Electron is updated along with the monorepo expected engines version. Uncomment this when we can update
104+
// const latestNodeAbiVersion = await getLatestVersion('node-abi');
104105
const latestElectronRemoteVersion = await getLatestVersion(
105106
'@electron/remote'
106107
);
@@ -114,7 +115,7 @@ async function main() {
114115
);
115116

116117
const newVersions = {
117-
'node-abi': `^${latestNodeAbiVersion}`,
118+
// 'node-abi': `^${latestNodeAbiVersion}`,
118119
'@electron/remote': `^${latestElectronRemoteVersion}`,
119120
'@electron/rebuild': `^${latestElectronRebuildVersion}`,
120121
electron: `^${latestElectronVersion}`,

0 commit comments

Comments
 (0)