Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit 3533b97

Browse files
fix: deps
1 parent b4adf9f commit 3533b97

File tree

4 files changed

+795
-730
lines changed

4 files changed

+795
-730
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
NODE_OPTIONS: '--max-old-space-size=3200'
1111
# CC_TEST_REPORTER_ID: 59622194cc44d91d2d1d239dffbe6af31e8cb985e6e6369c0743b67ad2cc8713
1212
steps:
13-
- { uses: actions/checkout@v3, with: { persist-credentials: false } }
14-
- { uses: actions/setup-node@v3, with: { node-version: 18, cache: 'yarn' } }
13+
- { uses: actions/checkout@v4, with: { persist-credentials: false } }
14+
- { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } }
1515

1616
- name: deps
1717
run: yarn --frozen-lockfile

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
if: "!contains(github.event.head_commit.message, 'skip ci')"
1111
env: { NODE_OPTIONS: '--max-old-space-size=3200' }
1212
steps:
13-
- { uses: actions/checkout@v3, with: { persist-credentials: true } }
14-
- { uses: actions/setup-node@v3, with: { node-version: 18, cache: 'yarn' } }
13+
- { uses: actions/checkout@v4, with: { persist-credentials: true } }
14+
- { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } }
1515

1616
# Cache for npm/npx in ~/.npm
1717
- uses: actions/cache@v3

src/index.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
import { SQLiteDB, SQLiteDBCfg } from './sqlite.db'
1+
export * from './sqlite.db'
22
export * from './sqliteKeyValueDB'
33
export * from './betterSqliteKeyValueDB'
4-
5-
export type { SQLiteDBCfg }
6-
7-
export { SQLiteDB }

0 commit comments

Comments
 (0)