Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .changeset/sqlite-refactor.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Refactored SQLite integration to use Task and throw-first semantics
- Replaced `options.memory` and `options.encryptionKey` with a discriminated `options.mode` field (`"memory"` | `"encrypted"`)
- Updated Expo and op-sqlite drivers to match the new API
- Added SQLite schema metadata primitives (`SqliteSchema`, `SqliteIndex`, `eqSqliteIndex`, `getSqliteSchema`, `getSqliteSnapshot`)
- Added `testCreateRunWithSqlite` helper for SQLite tests
- Added `testSetupSqlite` helper for SQLite tests

Why `SqliteError` was removed:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: bun install

- name: Install Playwright browsers
run: bun x playwright install --with-deps
run: cd packages/common && bunx playwright install --with-deps chromium firefox webkit

- name: Verify
run: bun run verify
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,14 @@ Install dependencies:
bun install
```

Install Playwright browsers for local test and verify runs:

```
bun run playwright:install
```

Run the browser install step again after Playwright updates or if the browser cache was removed.

Build scripts

- `bun run build` - Build packages
Expand All @@ -178,6 +186,7 @@ Linting

Testing

- `bun run playwright:install` - Install browsers required by Playwright-based Vitest projects
- `bun run test` - Run tests
- [Vitest VS Code extension](https://github.com/vitest-dev/vscode)

Expand Down
5 changes: 5 additions & 0 deletions apps/web/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"git": {
"deploymentEnabled": false
}
}
Loading
Loading