Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mikerourke committed Jan 16, 2025
1 parent 2ab6fa0 commit f638811
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"@laserware/arcade": "^3.13.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/bun": "^1.1.16",
"@biomejs/biome": "1.9.4",
"jsdom": "^25.0.1",
"jsdom": "^26.0.0",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
},
"trustedDependencies": [
"@biomejs/biome",
Expand Down
4 changes: 2 additions & 2 deletions src/handleChords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function handleChords<E extends ChordedEvent>(
throw new Error("Listener must be specified if chord or chords are used");
}

return handleChord(event, chordsOrBuilder, listener);
return void handleChord(event, chordsOrBuilder, listener);
}

// biome-ignore format:
Expand All @@ -174,7 +174,7 @@ export function handleChords<E extends ChordedEvent>(
},
};

return chordsOrBuilder(handler);
return void chordsOrBuilder(handler);
}

function handleChord<E extends ChordedEvent>(
Expand Down

0 comments on commit f638811

Please sign in to comment.