Skip to content

Commit f9b7d4f

Browse files
authored
Merge 8f24602 into 2e61d2b
2 parents 2e61d2b + 8f24602 commit f9b7d4f

24 files changed

Lines changed: 6081 additions & 131 deletions

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ supabase/migrations/
66
.DS_Store
77
.env
88
.env.*
9-
!.env.example
9+
!.env.example

build/check-bundle-size.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { join } from "node:path";
33

44
const BUDGET_BYTES: Record<string, number> = {
55
".css": 45_000,
6-
".js": 280_000,
6+
// Raised from 280 kB for the production Logitech onboard-profile codec,
7+
// guarded flash editor, verification exporter, and upstream Finalmouse
8+
// driver merged in the same release. Preview fixtures remain dev-only.
9+
".js": 310_000,
710
};
811

912
const ASSETS = join("dist", "assets");

0 commit comments

Comments
 (0)