chore: bump electron@19.1.11 (#175531)

* chore: bump electron@19.1.11

* chore: update chromium version for security patches
This commit is contained in:
Robo
2023-02-27 21:57:52 +09:00
committed by GitHub
parent aaa9dfb2d9
commit a22b77d5e1
3 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ function darwinBundleDocumentTypes(types: { [name: string]: string | string[] },
}
export const config = {
version: product.electronRepository ? '19.1.10' : util.getElectronVersion(),
version: product.electronRepository ? '19.1.11' : util.getElectronVersion(),
productAppName: product.nameLong,
companyName: 'Microsoft Corporation',
copyright: 'Copyright (C) 2022 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 ? '19.1.10' : util.getElectronVersion();
const version = product.electronRepository ? '19.1.11' : 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}`;