@crvouga/sqlite-mem 1.6.0 → 1.7.0
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/dist/ast/nodes.d.ts +5 -0
- package/dist/index.js +305 -179
- package/dist/index.js.map +2 -2
- package/dist/unstable.js +39 -18
- package/dist/unstable.js.map +2 -2
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crvouga/sqlite-mem",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Pure TypeScript in-memory SQLite implementation with zero WASM/native dependencies",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -91,7 +91,8 @@
|
|
|
91
91
|
"secrets:sync": "bun run scripts/secrets/sync-github.ts",
|
|
92
92
|
"npm:seed": "bun run scripts/seed-npm.ts",
|
|
93
93
|
"gh": "open https://github.com/crvouga/sqlite-mem/actions",
|
|
94
|
-
"example:react-vite": "cd examples/react-vite && bun install && bun run dev"
|
|
94
|
+
"example:react-vite": "cd examples/react-vite && bun install && bun run dev",
|
|
95
|
+
"fc": "clear && bun format && bun ci:local"
|
|
95
96
|
},
|
|
96
97
|
"devDependencies": {
|
|
97
98
|
"@arethetypeswrong/cli": "^0.18.5",
|