@zmdb/sqlite 1.0.0-beta.1 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ driver contracts come from `@zmdb/orm`. `sqliteVertical` pairs this dialect with
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
yarn add @zmdb/sqlite@1.0.0-beta.
|
|
9
|
+
yarn add @zmdb/sqlite@1.0.0-beta.2 @zmdb/sql@1.0.0-beta.2 @zmdb/migrations@1.0.0-beta.2
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
For the TypeScript snippets, install the declaration inputs used by the packed consumer:
|
|
@@ -15,7 +15,7 @@ For the TypeScript snippets, install the declaration inputs used by the packed c
|
|
|
15
15
|
yarn add --dev typescript@7.0.2 @types/node@26.4.1
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Use Node.js 26+ and ESM. Keep the required `@zmdb/sql` and `@zmdb/orm` peers aligned with this package's version; npm resolves those peers. An application already using
|
|
18
|
+
Use Node.js 26+ and ESM. Keep the required `@zmdb/sql` and `@zmdb/orm` peers aligned with this package's version; npm resolves those peers. An application already using `@zmdb/core` adds its selected
|
|
19
19
|
database package and client rather than replacing the product facade.
|
|
20
20
|
|
|
21
21
|
The only runtime dependency is `@zmdb/migrations`; `@zmdb/sql` and `@zmdb/orm` are required same-version peers. No third-party database client is installed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zmdb/sqlite",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Complete SQLite vertical for zmdb: SQL dialect, migrations, introspection, embedded migrations, and a node:sqlite driver with no third-party database client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"test": "vitest run"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@zmdb/migrations": "1.0.0-beta.
|
|
50
|
+
"@zmdb/migrations": "1.0.0-beta.2"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@zmdb/orm": "1.0.0-beta.
|
|
54
|
-
"@zmdb/sql": "1.0.0-beta.
|
|
53
|
+
"@zmdb/orm": "1.0.0-beta.2",
|
|
54
|
+
"@zmdb/sql": "1.0.0-beta.2"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=26"
|