@rip-lang/db 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/db.rip +2 -2
  2. package/package.json +1 -1
package/db.rip CHANGED
@@ -24,7 +24,7 @@ import { cors } from '@rip-lang/api/middleware'
24
24
  import { version as VERSION } from './package.json'
25
25
 
26
26
  # Database access via pure Bun FFI
27
- duckdb = await import('./lib/duckdb.mjs')
27
+ duckdb = import!('./lib/duckdb.mjs')
28
28
  open = duckdb.open
29
29
  duckdbVersion = duckdb.version
30
30
 
@@ -35,7 +35,7 @@ duckdbVersion = duckdb.version
35
35
  serializeEmptyResult
36
36
  serializeTokenizeResult
37
37
  tokenizeSQL
38
- } = await import('./lib/duckdb-binary.rip')
38
+ } = import!('./lib/duckdb-binary.rip')
39
39
 
40
40
  # Enable CORS for DuckDB UI and other clients
41
41
  use cors preflight: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/db",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "DuckDB server with official DuckDB UI — pure Bun FFI",
5
5
  "type": "module",
6
6
  "main": "db.rip",