Skip to content

Commit

Permalink
fix(deps): update dependency eslint to v9.16.0 [security] (#8717)
Browse files Browse the repository at this point in the history
  • Loading branch information
beyondkmp authored Dec 3, 2024
1 parent f4d40f9 commit 9381513
Show file tree
Hide file tree
Showing 4 changed files with 217 additions and 107 deletions.
5 changes: 5 additions & 0 deletions .changeset/quiet-suns-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"electron-builder": patch
---

fix(deps): update dependency eslint to v9.16.0 [security]
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
"@changesets/cli": "2.25.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"conventional-changelog-cli": "5.0.0",
"eslint": "^9.0.0",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "10.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/asar/asarUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class AsarPackager {
links.push({ file: destination, link })
}

for await (const fileSet of fileSets) {
for (const fileSet of fileSets) {
if (this.config.options.smartUnpack !== false) {
detectUnpackedDirs(fileSet, unpackedPaths)
}
Expand Down
Loading

0 comments on commit 9381513

Please sign in to comment.