Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
741d70f
Add build/test docs and architecture overview
steida Feb 5, 2026
cc0e493
Rename test app owners
steida Feb 5, 2026
2722409
chore(sync): apply Biome import ordering after cherry-pick 82c941ad
miccy Feb 7, 2026
2c116d9
Add incremental TS builds and workspace references
steida Feb 5, 2026
1546fc8
fix(sync): keep build green after f79f9f86 integration
miccy Feb 7, 2026
3bdb958
Enable ESLint cache and remove monorepo note
steida Feb 5, 2026
820e8d6
Update pnpm-lock.yaml
steida Feb 6, 2026
7643c78
Cleaned up tsconfig files across packages
steida Feb 6, 2026
0920453
fix(sync): keep package build outputs stable after 6cf88703
miccy Feb 7, 2026
4070378
Fixed package.json export paths to include src directory
steida Feb 6, 2026
8f9416f
fix(sync): keep package export targets at dist root
miccy Feb 7, 2026
b1d5be6
Added build dependency to turbo dev task
steida Feb 6, 2026
da98dbd
Improved createRun JSDoc across platforms
steida Feb 6, 2026
64f583b
Sorted imports in Task.test.ts
steida Feb 6, 2026
752e12a
Rewrote Evolu as Task-based createEvolu
steida Feb 6, 2026
601e913
fix(sync): add compatibility shims for task-based Evolu transition
miccy Feb 7, 2026
c2a1b93
Simplified platform Evolu deps for web, React Native, and React Web
steida Feb 6, 2026
425f86e
Restructured React hooks into local-first directory
steida Feb 6, 2026
a301d17
fix(sync): bridge Run naming and apply React hook formatting
miccy Feb 7, 2026
1f9d934
Updated Svelte appOwnerState for synchronous appOwner
steida Feb 6, 2026
dbf5339
Removed useEvoluError from Vue and sorted exports
steida Feb 6, 2026
eb0fce9
Update tsconfig.json
steida Feb 6, 2026
da49241
Update tsconfig.json
steida Feb 6, 2026
151a17e
Update index.tsx
steida Feb 6, 2026
f745401
Stub EvoluFullExample; comment out implementation
steida Feb 6, 2026
204df69
Update EvoluMinimalExample.tsx
steida Feb 6, 2026
145cc70
Shorten Console note in DI docs
steida Feb 6, 2026
9e6319e
chore(web): sort React imports in minimal playground
miccy Feb 7, 2026
0f5887f
Update Copilot instructions and streamline guidelines
steida Feb 6, 2026
1649384
Initial plan
Copilot Feb 7, 2026
dfea6e7
Fix PR review comments: context providers, exports, and examples
Copilot Feb 7, 2026
907cb6c
Remove stale biome_errors.txt and fix remaining linting issues (#30)
Copilot Feb 8, 2026
e8b1ecc
feat: Add typed `insert`, `update`, and `upsert` mutation APIs, and i…
miccy Feb 8, 2026
96fd04b
refactor(evolu): WIP stub with interface preparation for Worker integ…
miccy Feb 8, 2026
113334b
feat(tsconfig): add react-native.json and expo.json configs
miccy Feb 8, 2026
3766832
chore: Delete `CODE_REVIEW_SUMMARY.md` and modify `tsconfig.json` for…
miccy Feb 8, 2026
b8f15d4
chore: Update `svelte`, `motion`, and `react-native-screens` dependen…
miccy Feb 8, 2026
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
469 changes: 61 additions & 408 deletions .github/copilot-instructions.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ test-identicons
coverage
tmp
__screenshots__
*.tsBuildInfo
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,11 @@
"**/coverage": true,
"**/out": true
},
"vitest.disableWorkspaceWarning": true
"vitest.disableWorkspaceWarning": true,
"json.schemas": [
{
"fileMatch": ["turbo.json"],
"url": "https://turborepo.dev/schema.json"
}
]
}
Loading