Commit 05bc57b
authored
Coverage/targeted lanes 2026 03 05 (#64)
This pull request introduces several improvements across the monorepo,
focusing on streamlining build and clean scripts, updating dependencies,
enhancing test coverage for the `web` package, and adding a new nightly
CI workflow for browser WebSocket tests. Below are the most important
changes grouped by theme:
**Build & Clean Script Improvements:**
* Replaced all uses of the `rimraf` package in `clean` and `build`
scripts across packages and examples with a custom Bun-based script
(`bun ../../scripts/rm.mts`). This change standardizes cleanup
operations and removes the dependency on `rimraf`.
[[1]](diffhunk://#diff-7f28249b616177f02f586810e41d551814bea8d1ae91932e1a42a5af9732093eL8-R10)
[[2]](diffhunk://#diff-40c4411fc12563ccd002c2e07a131524733ac942e41e6ceff46fdc9ffe40c541L9-R9)
[[3]](diffhunk://#diff-e4423795aadc1c3ee172a311f30a02be8cd60a76343bcc0f172cad4497a1988eL10-R10)
[[4]](diffhunk://#diff-698303de1d190e77f726d281603ff8830050a20151b378c806f0cdcade291574L8-R8)
[[5]](diffhunk://#diff-c0972199570bbcd0cc5a5d086db08b657e5c346a190e809a472700a6aeddc3dbL8-R8)
[[6]](diffhunk://#diff-fadd8a4d61e2c65b39593eaa87214fa4c750703a0fbea7eae2c11f82afee0ed5L9-R9)
[[7]](diffhunk://#diff-e340aad2a8cb0b25138428c31acdfcd60e7ab41544a462b8cce893c3caf5bdb1L12-R12)
[[8]](diffhunk://#diff-8a7df93e7a673ac214eb42e41a9fc716c7124f15075536bd175dc53c17d7f6f3L8-R8)
[[9]](diffhunk://#diff-31a85c0b4c5526a896f02b675a49f1f942ec15fa815f6326edc4f74248aa0048L20-R22)
[[10]](diffhunk://#diff-87dc2037f7a8264c52ac826911ac21a5952b4d5c0a0fe69d22084b4dc9eca35bL21-R24)
[[11]](diffhunk://#diff-50d7c39a9430d37971aa76858165ab4f7921c4cc4340b28e9b673ce6982e63cfL50-L59)
[[12]](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L60-R64)
* Updated the root `clean` and `build` scripts in `package.json` to use
the Bun-based script and added a `clean:ts` script for TypeScript build
cache cleanup.
([package.jsonL60-R64](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L60-R64),
F65c6b61L5R5)
**Test Coverage & CI Enhancements:**
* Added new scripts and thresholds for test coverage and coverage gating
for the `web` package, and included a new `coverage:lane:web` script for
streamlined lane-based coverage checks.
[[1]](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L27-R35)
[[2]](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R45-R52)
* Added `web` to the list of filtered build targets in the CI workflow
trigger to ensure web builds are included in CI runs.
* Introduced a new GitHub Actions workflow (`ws-browser-nightly.yaml`)
to run nightly browser-based WebSocket tests, including log and
screenshot artifact uploads for debugging.
**Dependency Updates:**
* Updated various dependencies to their latest versions in example
projects, including Angular, Electron, Expo, Tauri, Svelte, Tanstack
Router, and others for improved stability and compatibility.
[[1]](diffhunk://#diff-e451e510111128fdbfb50191f29b394ae59a658935d1423762bd60e2e31d15aeL12-R20)
[[2]](diffhunk://#diff-40c4411fc12563ccd002c2e07a131524733ac942e41e6ceff46fdc9ffe40c541L23-R23)
[[3]](diffhunk://#diff-e4423795aadc1c3ee172a311f30a02be8cd60a76343bcc0f172cad4497a1988eL29-R41)
[[4]](diffhunk://#diff-fadd8a4d61e2c65b39593eaa87214fa4c750703a0fbea7eae2c11f82afee0ed5L19-R19)
[[5]](diffhunk://#diff-0b95502e40ec3ba03166111649b16aaadf4228073c4c1a5891379336b7e5a77aL13-R13)
[[6]](diffhunk://#diff-e340aad2a8cb0b25138428c31acdfcd60e7ab41544a462b8cce893c3caf5bdb1L21-R21)
* Updated devDependencies and overrides in the root `package.json`,
including removing `rimraf` and `webpack`, and adding new overrides for
`svgo` and `tar`.
**TypeScript Configuration Improvements:**
* Enhanced the TypeScript configuration in `apps/relay/tsconfig.json` to
explicitly include Node.js types and type roots, improving type safety
and compatibility.
These changes collectively improve developer experience, consistency,
and reliability across the monorepo.55 files changed
Lines changed: 3102 additions & 476 deletions
File tree
- .github/workflows
- apps/relay
- examples
- angular-vite-pwa
- react-electron
- react-expo
- react-nextjs
- react-vite-pwa
- svelte-vite-pwa
- tanstack-start
- tauri
- vue-vite-pwa
- packages
- astro
- bun
- common
- src
- local-first
- test
- local-first
- nodejs
- src
- local-first
- test
- react-native
- react-web
- test
- react
- svelte
- tanstack-start
- tauri
- vue
- web
- src
- test
- scripts
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
21 | 22 | | |
22 | 23 | | |
23 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
5 | 7 | | |
6 | 8 | | |
7 | 9 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
20 | | - | |
| 19 | + | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | | - | |
| 41 | + | |
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
0 commit comments