Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Source routing #4

Merged
merged 10 commits into from
Mar 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update deps
Nerivec committed Feb 21, 2025
commit dd293fc45a6ee6d4b10fac2baee2ebec6f215d78
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -14,15 +14,11 @@ jobs:
with:
node-version-file: 'package.json'

- uses: biomejs/setup-biome@v2
with:
version: latest

- run: npm ci

- run: npm run build:prod

- run: biome ci
- run: npm run check:ci

tests:
strategy:
592 changes: 262 additions & 330 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -14,7 +14,8 @@
"test": "vitest run --config ./test/vitest.config.mts",
"test:cov": "vitest run --config ./test/vitest.config.mts --coverage",
"bench": "vitest bench --run --config ./test/vitest.config.mts",
"check": "npx @biomejs/biome check --write .",
"check": "biome check --write .",
"check:ci": "biome check .",
"clean": "rm -rf dist *.tsbuildinfo",
"dev:cli": "node dist/dev/cli.js"
},
@@ -31,10 +32,10 @@
"homepage": "https://github.com/Nerivec/zigbee-on-host#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.2",
"serialport": "^12.0.0",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.6",
"serialport": "^13.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
"vitest": "^3.0.6"
}
}