зеркало из https://github.com/electron/trop.git
build: extend release versions for E22 (#257)
This commit is contained in:
Родитель
1db87f983c
Коммит
6138918221
|
@ -51,9 +51,15 @@ export async function getSupportedBranches(
|
|||
});
|
||||
|
||||
const values = Object.values(filtered);
|
||||
return values
|
||||
const supported = values
|
||||
.sort((a, b) => parseInt(a, 10) - parseInt(b, 10))
|
||||
.slice(-NUM_SUPPORTED_VERSIONS);
|
||||
// TODO: We're supporting Electron 22 until Oct. 10, 2023.
|
||||
// Remove this hardcoded value at that time.
|
||||
if (!supported.includes('22-x-y')) {
|
||||
supported.unshift('22-x-y');
|
||||
}
|
||||
return supported;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче