chore: update electron@22.3.10 (#183116)

This commit is contained in:
Robo
2023-05-22 23:34:36 +09:00
committed by GitHub
parent 750eebba73
commit ced29a4346
6 changed files with 12 additions and 12 deletions

View File

@@ -91,7 +91,7 @@ function darwinBundleDocumentTypes(types: { [name: string]: string | string[] },
}
export const config = {
version: product.electronRepository ? '22.5.2' : util.getElectronVersion(),
version: product.electronRepository ? '22.5.3' : util.getElectronVersion(),
productAppName: product.nameLong,
companyName: 'Microsoft Corporation',
copyright: 'Copyright (C) 2023 Microsoft. All rights reserved',
@@ -212,7 +212,7 @@ function getElectron(arch: string): () => NodeJS.ReadWriteStream {
}
async function main(arch = process.arch): Promise<void> {
const version = product.electronRepository ? '22.5.2' : util.getElectronVersion();
const version = product.electronRepository ? '22.5.3' : util.getElectronVersion();
const electronPath = path.join(root, '.build', 'electron');
const versionFile = path.join(electronPath, 'version');
const isUpToDate = fs.existsSync(versionFile) && fs.readFileSync(versionFile, 'utf8') === `${version}`;