Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
d090116
feat(ui): responsive updates
danditomaso Nov 29, 2025
b00c187
feat(ui): ui wip
danditomaso Nov 30, 2025
3a83b35
wip
danditomaso Dec 2, 2025
c654a3c
updating settings
danditomaso Dec 3, 2025
bbb9a97
wip
danditomaso Dec 7, 2025
ca49a80
wip
danditomaso Dec 9, 2025
7735f0a
wip
danditomaso Dec 9, 2025
e8862eb
wip
danditomaso Dec 10, 2025
99cf54e
wip
danditomaso Dec 11, 2025
c944bb4
wip
danditomaso Dec 19, 2025
be228ad
ui refactor, move to feature based folder system
danditomaso Dec 19, 2025
81dbea2
ui refactor phase 1 complete
danditomaso Dec 19, 2025
437a0a8
data refactor completed.
danditomaso Dec 19, 2025
6d816ff
completed state store refactor
danditomaso Dec 19, 2025
4977dfd
starting buildout of feature based directory structure
danditomaso Dec 19, 2025
5d145e7
feature focused directory completed
danditomaso Dec 19, 2025
1aec5f7
update settings to feature folder layout
danditomaso Dec 19, 2025
a8acd95
folder cleanup and migrate remaining features to feature based develo…
danditomaso Dec 19, 2025
bfa3eab
wip
danditomaso Dec 21, 2025
9b9f318
wip
danditomaso Dec 29, 2025
cd77090
wip
danditomaso Dec 29, 2025
4b3f45f
add reactive switch to sql
danditomaso Dec 30, 2025
e3115de
added remote admin functionality
danditomaso Dec 30, 2025
5f24217
wip
danditomaso Jan 5, 2026
cd8d74a
wip
danditomaso Jan 5, 2026
a6d9550
wip
danditomaso Jan 6, 2026
32702e2
wip
danditomaso Jan 7, 2026
127341e
chore: migrate from biome to oxlint/oxfmt
danditomaso Feb 1, 2026
ca15920
refactor: eliminate connection strategy pattern
danditomaso Feb 1, 2026
fbf6093
refactor: split BrowserHardware into browserSerial and browserBluetooth
danditomaso Feb 1, 2026
131685f
refactor: extract ConfigSyncService from ConnectionService
danditomaso Feb 1, 2026
9412a50
wip
danditomaso Feb 4, 2026
a415997
wip
danditomaso Feb 5, 2026
32260ac
wip
danditomaso Feb 9, 2026
4ff44b7
updated meshtastic protobuf package
danditomaso Feb 9, 2026
7b841f0
removed protobuf submodule
danditomaso Feb 9, 2026
c275f1b
removed old githook
danditomaso Feb 9, 2026
c8d2f80
refactor: migrate from Biome to oxlint/oxfmt and fix connection recovery
danditomaso Feb 10, 2026
ea7a03f
fix: resolve production 404 errors for i18n and missing assets
danditomaso Feb 10, 2026
e3499b5
remove protobuf
danditomaso Feb 10, 2026
e5d05ba
fix lang
danditomaso Feb 10, 2026
538a280
Update packages/core/src/utils/queue.ts
danditomaso Feb 10, 2026
1b883fa
wip
danditomaso Feb 10, 2026
cf31f93
refactored message hooks
danditomaso Feb 10, 2026
54ed37f
cleaned up codebase
danditomaso Feb 10, 2026
f1602f4
wip
danditomaso Feb 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 0 additions & 12 deletions .githooks/_/pre-commit

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ npm/

packages/protobufs/packages/ts/dist
.pnpm-store/
.claude
.gemini

# Local dev certs
*.pem
Expand Down
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm lint-staged
13 changes: 13 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxfmt/configuration_schema.json",
"useTabs": false,
"tabWidth": 2,
"printWidth": 80,
"ignorePatterns": [
"node_modules",
"dist",
"protobufs",
"**/locales/*-*/*.json",
"**/packages/ui/"
]
}
26 changes: 26 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
"plugins": ["react", "react-perf", "jsx-a11y", "typescript", "import"],
"rules": {
"no-debugger": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-unused-vars": "error",
"import/no-unused-modules": "error"
},
"ignorePatterns": [
"node_modules",
"dist",
"protobufs",
"**/locales/*-*/*.json",
"**/packages/ui/"
],
"overrides": [
{
"files": ["**/*.test.ts", "**/*.test.tsx", "**/__tests__/**/*.{ts,tsx}"],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
}
]
}
75 changes: 0 additions & 75 deletions biome.json

This file was deleted.

34 changes: 20 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,38 @@
"url": "https://github.com/meshtastic/web/issues"
},
"homepage": "https://meshtastic.org",
"simple-git-hooks": {
"pre-commit": "pnpm run check:fix"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format . --write",
"check": "biome check",
"check:fix": "biome check --write",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"check": "pnpm lint && pnpm format",
"check:fix": "pnpm lint:fix && pnpm format:fix",
"build:all": "pnpm run --filter '*' build",
"clean:all": "pnpm run --filter '*' clean",
"publish:packages": "pnpm run build --filter 'packages/transport-*'",
"test": "vitest"
"test": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint",
"oxfmt"
]
},
"dependencies": {
"@bufbuild/protobuf": "^2.9.0",
"@meshtastic/protobufs": "npm:@jsr/meshtastic__protobufs@^2.7.12-1",
"@meshtastic/protobufs": "npm:@jsr/meshtastic__protobufs@^2.7.18",
"ste-simple-events": "^3.0.11",
"tslog": "^4.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.3.1",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"oxfmt": "^0.16.0",
"oxlint": "^1.41.0",
"tsdown": "^0.15.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
Expand All @@ -46,8 +53,7 @@
"@serialport/bindings-cpp",
"@tailwindcss/oxide",
"core-js",
"esbuild",
"simple-git-hooks"
"esbuild"
]
}
}
Loading