Skip to content

Commit 8fc0a6f

Browse files
fix(ignore): bump the minor-patch group with 2 updates (Koenkk#1536)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
1 parent 47ae47d commit 8fc0a6f

File tree

4 files changed

+64
-64
lines changed

4 files changed

+64
-64
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
"deprecated": false,
4141
"description": "An open source Zigbee gateway solution with node.js.",
4242
"devDependencies": {
43-
"@biomejs/biome": "^2.2.6",
43+
"@biomejs/biome": "^2.3.1",
4444
"@serialport/binding-mock": "^10.2.2",
4545
"@types/debounce": "^1.2.4",
46-
"@types/node": "^24.9.0",
46+
"@types/node": "^24.9.1",
4747
"@vitest/coverage-v8": "^3.1.1",
4848
"rimraf": "^6.0.1",
4949
"typescript": "^5.9.2",

pnpm-lock.yaml

Lines changed: 58 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/controller.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5940,10 +5940,10 @@ describe("Controller", () => {
59405940
await controller.start();
59415941
await mockAdapterEvents.deviceJoined({networkAddress: 129, ieeeAddr: "0x129"});
59425942
await mockAdapterEvents.deviceJoined({networkAddress: 170, ieeeAddr: "0x170"});
5943-
const endpoint = controller.getDeviceByIeeeAddr("0x129")?.getEndpoint(1)!;
5944-
const target = controller.getDeviceByIeeeAddr("0x170")?.getEndpoint(1)!;
5943+
const endpoint = controller.getDeviceByIeeeAddr("0x129")?.getEndpoint(1);
5944+
const target = controller.getDeviceByIeeeAddr("0x170")?.getEndpoint(1);
59455945
mockAdapterSendZdo.mockClear();
5946-
await endpoint.unbind("genOnOff", target);
5946+
await endpoint!.unbind("genOnOff", target!);
59475947
expect(mockAdapterSendZdo).toHaveBeenCalledTimes(0);
59485948
});
59495949

0 commit comments

Comments
 (0)