Skip to content

Commit dfa35c3

Browse files
authored
chore(deps): update @electron/rebuild to 3.7.0 (#8575)
1 parent e9eef0c commit dfa35c3

File tree

5 files changed

+1541
-2741
lines changed

5 files changed

+1541
-2741
lines changed

.changeset/real-cougars-watch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
chore(deps): update @electron/rebuild to v3.7.0

packages/app-builder-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@develar/schema-utils": "~2.6.5",
5050
"@electron/notarize": "2.5.0",
5151
"@electron/osx-sign": "1.3.1",
52-
"@electron/rebuild": "3.6.1",
52+
"@electron/rebuild": "3.7.0",
5353
"@electron/universal": "2.0.1",
5454
"@malept/flatpak-bundler": "^0.4.0",
5555
"@types/fs-extra": "9.0.13",

packages/app-builder-lib/src/electron/electronVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function computeElectronVersion(projectDir: string): Promise<string
6060

6161
const potentialRootDirs = [projectDir, await getProjectRootPath(projectDir)]
6262
let dependency: NameAndVersion | null = null
63-
for await (const dir of potentialRootDirs) {
63+
for (const dir of potentialRootDirs) {
6464
const metadata = await orNullIfFileNotExist(readJson(path.join(dir, "package.json")))
6565
dependency = metadata ? findFromPackageMetadata(metadata) : null
6666
if (dependency) {

0 commit comments

Comments
 (0)