Skip to content

Commit

Permalink
chore: bump @eslint/js and fix violation (#9556)
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired authored Oct 19, 2024
1 parent 0d427d4 commit 97c77ab
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
4 changes: 2 additions & 2 deletions config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"@typescript-eslint/parser": "^8.10.0",
"typescript-eslint": "^8.10.0",
"@embroider/addon-dev": "^4.3.1",
"@eslint/js": "^8.57.0",
"globals": "^15.2.0",
"@eslint/js": "^9.13.0",
"globals": "^15.11.0",
"ember-eslint-parser": "^0.5.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/graph/src/-private/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ export class Graph {
if (hasAdditions || hasRemovals || reordered) {
changed.set(field, {
kind: 'collection',
additions: new Set(relationship.additions) || new Set(),
removals: new Set(relationship.removals) || new Set(),
additions: new Set(relationship.additions),
removals: new Set(relationship.removals),
remoteState: relationship.remoteState,
localState: legacyGetCollectionRelationshipData(relationship).data || [],
reordered,
Expand Down
23 changes: 9 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 97c77ab

Please sign in to comment.