@crvouga/sqlite-mem 1.2.0 → 1.3.1
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 +12 -4
- package/compat/divergences.json +1 -1
- package/dist/api/statement.d.ts +1 -0
- package/dist/executor/env.d.ts +2 -0
- package/dist/index.js +135 -26
- package/dist/index.js.map +3 -3
- package/dist/parser/index.d.ts +7 -1
- package/dist/parser/parser.d.ts +12 -2
- package/dist/schema/master-sql.d.ts +10 -0
- package/dist/unstable.js +20 -8
- package/dist/unstable.js.map +2 -2
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crvouga/sqlite-mem",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Pure TypeScript in-memory SQLite implementation with zero WASM/native dependencies",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,7 +58,11 @@
|
|
|
58
58
|
"benchmark:bundle": "bun run build && bun run benchmarks/bundle.ts",
|
|
59
59
|
"benchmark:report": "bun run benchmarks/report-html.ts",
|
|
60
60
|
"test:browser": "bun run build && bun run scripts/browser-perf.ts",
|
|
61
|
-
"test:
|
|
61
|
+
"test:browser-sql": "bun run build && bun run scripts/browser-sql-smoke.ts",
|
|
62
|
+
"test:canaries": "bun run scripts/run-canaries.ts",
|
|
63
|
+
"test:sqlite-compat": "bun run scripts/sqlite-compat-gate.ts && bun run scripts/check-skip-register.ts && bun test tests/contract tests/fuzz tests/harness",
|
|
64
|
+
"divergences": "bun run scripts/generate-divergences.ts",
|
|
65
|
+
"fixtures:browser": "bun run scripts/generate-browser-fixtures.ts",
|
|
62
66
|
"inventory": "bun run scripts/sqlite-inventory.ts",
|
|
63
67
|
"scenarios": "bun run scripts/sqlite-scenarios.ts",
|
|
64
68
|
"fts-surface": "bun run scripts/fts-oracle-surface.ts",
|