Skip to content

Commit d1a7a21

Browse files
committed
add sync apis
1 parent 21cc38a commit d1a7a21

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+6046
-3302
lines changed

.changeset/config.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@1.6.4/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{ "repo": "Effect-TS/wa-sqlite" }
6+
],
7+
"commit": false,
8+
"linked": [],
9+
"access": "restricted",
10+
"baseBranch": "main",
11+
"updateInternalDependencies": "patch",
12+
"ignore": [],
13+
"snapshot": {
14+
"useCalculatedVersion": false,
15+
"prereleaseTemplate": "{tag}-{commit}"
16+
}
17+
}

.changeset/fast-deers-retire.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect/wa-sqlite": patch
3+
---
4+
5+
add serialize/deserialize

.changeset/old-hornets-doubt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect/wa-sqlite": minor
3+
---
4+
5+
update sqlite

.changeset/witty-impalas-dance.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect/wa-sqlite": patch
3+
---
4+
5+
add .execIterator for streaming rows

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.github/workflows/ci.yml

Lines changed: 0 additions & 72 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Release
2+
on:
3+
push:
4+
branches: [main]
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
9+
permissions: {}
10+
11+
jobs:
12+
release:
13+
name: Release
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 30
16+
permissions:
17+
contents: write
18+
id-token: write
19+
pull-requests: write
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Install pnpm
23+
uses: pnpm/action-setup@v3
24+
- name: Install node
25+
uses: actions/setup-node@v4
26+
with:
27+
cache: pnpm
28+
node-version: 20.18.0
29+
- name: Install dependencies
30+
shell: bash
31+
run: pnpm install
32+
- name: Create Release Pull Request or Publish
33+
uses: changesets/action@v1
34+
with:
35+
version: pnpm changeset version
36+
publish: pnpm changeset publish
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@
1313
/debug
1414
/deps
1515
/tmp
16+
.direnv/
17+
node_modules/

.prettierrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"semi": false
3+
}

.yarn/releases/yarn-4.0.2.cjs

Lines changed: 0 additions & 893 deletions
This file was deleted.

0 commit comments

Comments
 (0)