Skip to content

Commit

Permalink
chore(deps): update @electron/rebuild to 3.7.0 (#8575)
Browse files Browse the repository at this point in the history
  • Loading branch information
doctolivier authored Oct 10, 2024
1 parent e9eef0c commit dfa35c3
Show file tree
Hide file tree
Showing 5 changed files with 1,541 additions and 2,741 deletions.
5 changes: 5 additions & 0 deletions .changeset/real-cougars-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

chore(deps): update @electron/rebuild to v3.7.0
2 changes: 1 addition & 1 deletion packages/app-builder-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@develar/schema-utils": "~2.6.5",
"@electron/notarize": "2.5.0",
"@electron/osx-sign": "1.3.1",
"@electron/rebuild": "3.6.1",
"@electron/rebuild": "3.7.0",
"@electron/universal": "2.0.1",
"@malept/flatpak-bundler": "^0.4.0",
"@types/fs-extra": "9.0.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/electron/electronVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function computeElectronVersion(projectDir: string): Promise<string

const potentialRootDirs = [projectDir, await getProjectRootPath(projectDir)]
let dependency: NameAndVersion | null = null
for await (const dir of potentialRootDirs) {
for (const dir of potentialRootDirs) {
const metadata = await orNullIfFileNotExist(readJson(path.join(dir, "package.json")))
dependency = metadata ? findFromPackageMetadata(metadata) : null
if (dependency) {
Expand Down
Loading

0 comments on commit dfa35c3

Please sign in to comment.