@aztec/sqlite3mc-wasm 0.0.1-commit.2f68f620 → 0.0.1-commit.321f6a9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @aztec/sqlite3mc-wasm
2
2
 
3
- SQLite3 Multiple Ciphers v2.2.4 (based on SQLite 3.50.4) packaged as a WASM
3
+ SQLite3 Multiple Ciphers v2.3.5 (based on SQLite 3.53.2) packaged as a WASM
4
4
  module.
5
5
 
6
6
  Upstream: https://github.com/utelle/SQLite3MultipleCiphers
@@ -21,7 +21,7 @@ Upstream WASM/JS artifacts under `vendor/jswasm/` are fetched at build time. The
21
21
  |-----------------------------------|----------------------------------------------------------------------------------------------------------------------------------------|
22
22
  | `.gitignore` | Allowlist that keeps the rest of `vendor/jswasm/` out of git |
23
23
  | `SHA256SUMS` | Per-file integrity manifest. Pinned at vendoring time; verified at every build |
24
- | `sqlite3-bundler-friendly.d.mts` | Locally-authored TypeScript declaration companion for the upstream `.mjs`. Required by TS NodeNext module resolution. |
24
+ | `sqlite3.d.mts` | Locally-authored TypeScript declaration companion for the upstream `sqlite3.mjs`. Required by TS NodeNext module resolution. |
25
25
 
26
26
  Everything else in `vendor/jswasm/` (the actual `.wasm`, `.mjs`, `.js`) is populated by `scripts/vendor.sh`, which is
27
27
  invoked from `yarn-project/bootstrap.sh` before any package compiles. It downloads the upstream release zip, verifies
@@ -31,9 +31,9 @@ files come back via the build cache without re-fetching from upstream.
31
31
  The pinned upstream version lives in `scripts/vendor.pin`:
32
32
 
33
33
  ```sh
34
- MC_VERSION=2.2.4
35
- SQLITE_VERSION=3.50.4
36
- SHA256=e73514200d76286d7d4a239589589b4f64d24ac4f4f7b2760e1f07b14ac5f6a5
34
+ MC_VERSION=2.3.5
35
+ SQLITE_VERSION=3.53.2
36
+ SHA256=3d0d5ebe4c54a9a22012410726ecef711e4e3e15ec11dffddf09488c72a10670
37
37
  ```
38
38
 
39
39
  ## Verification (full chain)
@@ -79,7 +79,7 @@ unzip -q /tmp/sqlite3mc.zip -d /tmp/sqlite3mc-check
79
79
  (cd /tmp/sqlite3mc-check/sqlite3mc-wasm-* && cd jswasm && sha256sum -- * | sort -k2) > /tmp/upstream-sums
80
80
 
81
81
  # Compare against repo's SHA256SUMS, excluding our locally-authored d.mts
82
- grep -v 'sqlite3-bundler-friendly\.d\.mts' vendor/jswasm/SHA256SUMS | sort -k2 > /tmp/repo-sums
82
+ grep -v 'sqlite3\.d\.mts' vendor/jswasm/SHA256SUMS | sort -k2 > /tmp/repo-sums
83
83
  diff /tmp/upstream-sums /tmp/repo-sums
84
84
  ```
85
85
 
package/dest/index.js CHANGED
@@ -1,6 +1,81 @@
1
+ import vendoredInit from '../vendor/jswasm/sqlite3.mjs';
1
2
  /**
2
- * Re-exports sqlite3mc's bundler-friendly ES module default (sqlite3InitModule)
3
- * and the TypeScript types expected by downstream consumers. Mirrors the
4
- * `@sqlite.org/sqlite-wasm` package default export sqlite3mc is a strict
5
- * API-compatible superset, so upstream types apply unchanged.
6
- */ export { default } from '../vendor/jswasm/sqlite3-bundler-friendly.mjs';
3
+ * Bundler-visible static reference to the wasm binary. Because the URL argument is a string literal, bundlers detect
4
+ * the expression, emit the wasm as an asset, and rewrite the URL, so the default `locateFile` below resolves to the
5
+ * emitted asset instead of guessing a path relative to the (relocated) output chunk at runtime.
6
+ */ export const SQLITE3_WASM_URL = new URL('../vendor/jswasm/sqlite3.wasm', import.meta.url);
7
+ /**
8
+ * Initializes the sqlite3mc wasm module.
9
+ *
10
+ * With no options, the wasm is fetched from {@link SQLITE3_WASM_URL}, which bundlers rewrite to their emitted asset,
11
+ * so bundled consumers work by default. Pass `locateFile`, `wasmBinary`, or `instantiateWasm` to override.
12
+ *
13
+ * If loading the wasm fails (unreachable URL, HTTP error, corrupt bytes), the returned promise rejects with the cause.
14
+ * Exception: failures inside a caller-supplied `instantiateWasm` cannot be observed (Emscripten's hook contract has no
15
+ * error channel), so with a custom hook the promise never settles on failure.
16
+ */ export default function sqlite3InitModule(options = {}) {
17
+ return new Promise((resolve, reject)=>{
18
+ const instantiateWasm = options.instantiateWasm ?? (options.wasmBinary ? wasmBinaryInstantiator(options.wasmBinary, reject) : urlInstantiator(options.locateFile ?? defaultLocateFile, reject));
19
+ const callOptions = {
20
+ ...options,
21
+ instantiateWasm
22
+ };
23
+ installInitModuleState(callOptions);
24
+ // The vendored init consumes the installed state synchronously (its pre-js runs before the first await), so
25
+ // interleaved calls cannot observe each other's state. On instantiation failure the vendored promise never
26
+ // settles (the hook has no error channel), so the instantiators report failure through `reject` instead.
27
+ vendoredInit(callOptions).then(resolve, reject);
28
+ });
29
+ }
30
+ /** Builds an Emscripten `instantiateWasm` hook that instantiates the given bytes instead of fetching by URL. */ function wasmBinaryInstantiator(wasmBinary, onFailure) {
31
+ return (imports, onSuccess)=>{
32
+ void WebAssembly.instantiate(wasmBinary, imports).then(({ instance, module })=>onSuccess(instance, module), (error)=>onFailure(instantiationError('wasmBinary', error)));
33
+ return {};
34
+ };
35
+ }
36
+ /**
37
+ * Builds an Emscripten `instantiateWasm` hook that fetches and instantiates the wasm from the located URL, replacing
38
+ * the vendored fallback (which reports failures nowhere). Prefers streaming compilation, falling back to
39
+ * buffer-based instantiation when streaming is unavailable or fails (e.g. a server responding without the
40
+ * `application/wasm` MIME type, which `instantiateStreaming` rejects).
41
+ */ function urlInstantiator(locate, onFailure) {
42
+ return (imports, onSuccess)=>{
43
+ const url = locate('sqlite3.wasm', '');
44
+ const streaming = WebAssembly.instantiateStreaming ? WebAssembly.instantiateStreaming(fetch(url, {
45
+ credentials: 'same-origin'
46
+ }), imports).catch(()=>fetchAndInstantiate(url, imports)) : fetchAndInstantiate(url, imports);
47
+ void streaming.then(({ instance, module })=>onSuccess(instance, module), (error)=>onFailure(instantiationError(url, error)));
48
+ return {};
49
+ };
50
+ }
51
+ /** Fetches the wasm and instantiates it from a buffer, surfacing HTTP errors that streaming instantiation obscures. */ async function fetchAndInstantiate(url, imports) {
52
+ const response = await fetch(url, {
53
+ credentials: 'same-origin'
54
+ });
55
+ if (!response.ok) {
56
+ throw new Error(`HTTP ${response.status} ${response.statusText}`.trimEnd());
57
+ }
58
+ return WebAssembly.instantiate(await response.arrayBuffer(), imports);
59
+ }
60
+ function instantiationError(source, cause) {
61
+ const detail = cause instanceof Error ? cause.message : String(cause);
62
+ return new Error(`sqlite3 wasm instantiation failed (${source}): ${detail}`, {
63
+ cause
64
+ });
65
+ }
66
+ /**
67
+ * Installs the global state object the vendored module's pre-js binds its `Module.locateFile` and
68
+ * `Module.instantiateWasm` wrappers to.
69
+ */ function installInitModuleState(options) {
70
+ const urlParams = globalThis.location?.href ? new URL(globalThis.location.href).searchParams : new URLSearchParams();
71
+ const debugModule = urlParams.has('sqlite3.debugModule') ? (...args)=>console.warn('sqlite3.debugModule:', ...args) : ()=>{};
72
+ globalThis.sqlite3InitModuleState = Object.assign(Object.create(null), {
73
+ debugModule,
74
+ wasmFilename: 'sqlite3.wasm',
75
+ emscriptenLocateFile: options.locateFile ?? defaultLocateFile,
76
+ emscriptenInstantiateWasm: options.instantiateWasm
77
+ });
78
+ }
79
+ /** Resolves the wasm to {@link SQLITE3_WASM_URL} so bundled consumers load the bundler-emitted asset by default. */ function defaultLocateFile(path, prefix) {
80
+ return path === 'sqlite3.wasm' ? SQLITE3_WASM_URL.href : new URL(path, prefix || import.meta.url).href;
81
+ }
@@ -1,9 +1,33 @@
1
+ import type { Sqlite3Static } from '@sqlite.org/sqlite-wasm';
2
+ export type { Database, SAHPoolUtil, Sqlite3Static } from '@sqlite.org/sqlite-wasm';
1
3
  /**
2
- * Re-exports sqlite3mc's bundler-friendly ES module default (sqlite3InitModule)
3
- * and the TypeScript types expected by downstream consumers. Mirrors the
4
- * `@sqlite.org/sqlite-wasm` package default export sqlite3mc is a strict
5
- * API-compatible superset, so upstream types apply unchanged.
4
+ * Bundler-visible static reference to the wasm binary. Because the URL argument is a string literal, bundlers detect
5
+ * the expression, emit the wasm as an asset, and rewrite the URL, so the default `locateFile` below resolves to the
6
+ * emitted asset instead of guessing a path relative to the (relocated) output chunk at runtime.
6
7
  */
7
- export { default } from '../vendor/jswasm/sqlite3-bundler-friendly.mjs';
8
- export type { Database, SAHPoolUtil, Sqlite3Static } from '@sqlite.org/sqlite-wasm';
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7R0FLRztBQUNILE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSwrQ0FBK0MsQ0FBQztBQUN4RSxZQUFZLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxhQUFhLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQyJ9
8
+ export declare const SQLITE3_WASM_URL: URL;
9
+ /**
10
+ * Emscripten module-loader options honored by {@link sqlite3InitModule}. Any further options are passed through to the
11
+ * vendored module unchanged.
12
+ */
13
+ export interface Sqlite3InitOptions {
14
+ /** Resolves the URL from which a runtime asset (in practice always `sqlite3.wasm`) is fetched. */
15
+ locateFile?: (path: string, prefix: string) => string;
16
+ /** Pre-fetched wasm bytes. When set, the wasm is instantiated directly and never fetched by URL. */
17
+ wasmBinary?: BufferSource;
18
+ /** Custom wasm instantiation hook (standard Emscripten contract). Takes precedence over `wasmBinary`. */
19
+ instantiateWasm?: (imports: WebAssembly.Imports, onSuccess: (instance: WebAssembly.Instance, module: WebAssembly.Module) => void) => object;
20
+ [key: string]: unknown;
21
+ }
22
+ /**
23
+ * Initializes the sqlite3mc wasm module.
24
+ *
25
+ * With no options, the wasm is fetched from {@link SQLITE3_WASM_URL}, which bundlers rewrite to their emitted asset,
26
+ * so bundled consumers work by default. Pass `locateFile`, `wasmBinary`, or `instantiateWasm` to override.
27
+ *
28
+ * If loading the wasm fails (unreachable URL, HTTP error, corrupt bytes), the returned promise rejects with the cause.
29
+ * Exception: failures inside a caller-supplied `instantiateWasm` cannot be observed (Emscripten's hook contract has no
30
+ * error channel), so with a custom hook the promise never settles on failure.
31
+ */
32
+ export default function sqlite3InitModule(options?: Sqlite3InitOptions): Promise<Sqlite3Static>;
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxhQUFhLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUk3RCxZQUFZLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxhQUFhLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUVwRjs7OztHQUlHO0FBQ0gsZUFBTyxNQUFNLGdCQUFnQixLQUE0RCxDQUFDO0FBRTFGOzs7R0FHRztBQUNILE1BQU0sV0FBVyxrQkFBa0I7SUFDakMsa0dBQWtHO0lBQ2xHLFVBQVUsQ0FBQyxFQUFFLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxLQUFLLE1BQU0sQ0FBQztJQUN0RCxvR0FBb0c7SUFDcEcsVUFBVSxDQUFDLEVBQUUsWUFBWSxDQUFDO0lBQzFCLHlHQUF5RztJQUN6RyxlQUFlLENBQUMsRUFBRSxDQUNoQixPQUFPLEVBQUUsV0FBVyxDQUFDLE9BQU8sRUFDNUIsU0FBUyxFQUFFLENBQUMsUUFBUSxFQUFFLFdBQVcsQ0FBQyxRQUFRLEVBQUUsTUFBTSxFQUFFLFdBQVcsQ0FBQyxNQUFNLEtBQUssSUFBSSxLQUM1RSxNQUFNLENBQUM7SUFDWixDQUFDLEdBQUcsRUFBRSxNQUFNLEdBQUcsT0FBTyxDQUFDO0NBQ3hCO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsTUFBTSxDQUFDLE9BQU8sVUFBVSxpQkFBaUIsQ0FBQyxPQUFPLEdBQUUsa0JBQXVCLEdBQUcsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQWNsRyJ9
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,+CAA+C,CAAC;AACxE,YAAY,EAAE,QAAQ,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAI7D,YAAY,EAAE,QAAQ,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAEpF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,KAA4D,CAAC;AAE1F;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IACjC,kGAAkG;IAClG,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC;IACtD,oGAAoG;IACpG,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B,yGAAyG;IACzG,eAAe,CAAC,EAAE,CAChB,OAAO,EAAE,WAAW,CAAC,OAAO,EAC5B,SAAS,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,MAAM,KAAK,IAAI,KAC5E,MAAM,CAAC;IACZ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;;;;;;;;GASG;AACH,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,OAAO,GAAE,kBAAuB,GAAG,OAAO,CAAC,aAAa,CAAC,CAclG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/sqlite3mc-wasm",
3
- "version": "0.0.1-commit.2f68f620",
3
+ "version": "0.0.1-commit.321f6a9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -59,6 +59,7 @@
59
59
  ]
60
60
  },
61
61
  "moduleNameMapper": {
62
+ "^\\.\\./vendor/jswasm/(.*)$": "<rootDir>/../vendor/jswasm/$1",
62
63
  "^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
63
64
  },
64
65
  "reporters": [
package/src/index.ts CHANGED
@@ -1,8 +1,134 @@
1
+ import type { Sqlite3Static } from '@sqlite.org/sqlite-wasm';
2
+
3
+ import vendoredInit from '../vendor/jswasm/sqlite3.mjs';
4
+
5
+ export type { Database, SAHPoolUtil, Sqlite3Static } from '@sqlite.org/sqlite-wasm';
6
+
1
7
  /**
2
- * Re-exports sqlite3mc's bundler-friendly ES module default (sqlite3InitModule)
3
- * and the TypeScript types expected by downstream consumers. Mirrors the
4
- * `@sqlite.org/sqlite-wasm` package default export sqlite3mc is a strict
5
- * API-compatible superset, so upstream types apply unchanged.
8
+ * Bundler-visible static reference to the wasm binary. Because the URL argument is a string literal, bundlers detect
9
+ * the expression, emit the wasm as an asset, and rewrite the URL, so the default `locateFile` below resolves to the
10
+ * emitted asset instead of guessing a path relative to the (relocated) output chunk at runtime.
6
11
  */
7
- export { default } from '../vendor/jswasm/sqlite3-bundler-friendly.mjs';
8
- export type { Database, SAHPoolUtil, Sqlite3Static } from '@sqlite.org/sqlite-wasm';
12
+ export const SQLITE3_WASM_URL = new URL('../vendor/jswasm/sqlite3.wasm', import.meta.url);
13
+
14
+ /**
15
+ * Emscripten module-loader options honored by {@link sqlite3InitModule}. Any further options are passed through to the
16
+ * vendored module unchanged.
17
+ */
18
+ export interface Sqlite3InitOptions {
19
+ /** Resolves the URL from which a runtime asset (in practice always `sqlite3.wasm`) is fetched. */
20
+ locateFile?: (path: string, prefix: string) => string;
21
+ /** Pre-fetched wasm bytes. When set, the wasm is instantiated directly and never fetched by URL. */
22
+ wasmBinary?: BufferSource;
23
+ /** Custom wasm instantiation hook (standard Emscripten contract). Takes precedence over `wasmBinary`. */
24
+ instantiateWasm?: (
25
+ imports: WebAssembly.Imports,
26
+ onSuccess: (instance: WebAssembly.Instance, module: WebAssembly.Module) => void,
27
+ ) => object;
28
+ [key: string]: unknown;
29
+ }
30
+
31
+ /**
32
+ * Initializes the sqlite3mc wasm module.
33
+ *
34
+ * With no options, the wasm is fetched from {@link SQLITE3_WASM_URL}, which bundlers rewrite to their emitted asset,
35
+ * so bundled consumers work by default. Pass `locateFile`, `wasmBinary`, or `instantiateWasm` to override.
36
+ *
37
+ * If loading the wasm fails (unreachable URL, HTTP error, corrupt bytes), the returned promise rejects with the cause.
38
+ * Exception: failures inside a caller-supplied `instantiateWasm` cannot be observed (Emscripten's hook contract has no
39
+ * error channel), so with a custom hook the promise never settles on failure.
40
+ */
41
+ export default function sqlite3InitModule(options: Sqlite3InitOptions = {}): Promise<Sqlite3Static> {
42
+ return new Promise((resolve, reject) => {
43
+ const instantiateWasm =
44
+ options.instantiateWasm ??
45
+ (options.wasmBinary
46
+ ? wasmBinaryInstantiator(options.wasmBinary, reject)
47
+ : urlInstantiator(options.locateFile ?? defaultLocateFile, reject));
48
+ const callOptions = { ...options, instantiateWasm };
49
+ installInitModuleState(callOptions);
50
+ // The vendored init consumes the installed state synchronously (its pre-js runs before the first await), so
51
+ // interleaved calls cannot observe each other's state. On instantiation failure the vendored promise never
52
+ // settles (the hook has no error channel), so the instantiators report failure through `reject` instead.
53
+ vendoredInit(callOptions).then(resolve, reject);
54
+ });
55
+ }
56
+
57
+ /** Builds an Emscripten `instantiateWasm` hook that instantiates the given bytes instead of fetching by URL. */
58
+ function wasmBinaryInstantiator(
59
+ wasmBinary: BufferSource,
60
+ onFailure: (error: Error) => void,
61
+ ): Required<Sqlite3InitOptions>['instantiateWasm'] {
62
+ return (imports, onSuccess) => {
63
+ void WebAssembly.instantiate(wasmBinary, imports).then(
64
+ ({ instance, module }) => onSuccess(instance, module),
65
+ error => onFailure(instantiationError('wasmBinary', error)),
66
+ );
67
+ return {};
68
+ };
69
+ }
70
+
71
+ /**
72
+ * Builds an Emscripten `instantiateWasm` hook that fetches and instantiates the wasm from the located URL, replacing
73
+ * the vendored fallback (which reports failures nowhere). Prefers streaming compilation, falling back to
74
+ * buffer-based instantiation when streaming is unavailable or fails (e.g. a server responding without the
75
+ * `application/wasm` MIME type, which `instantiateStreaming` rejects).
76
+ */
77
+ function urlInstantiator(
78
+ locate: (path: string, prefix: string) => string,
79
+ onFailure: (error: Error) => void,
80
+ ): Required<Sqlite3InitOptions>['instantiateWasm'] {
81
+ return (imports, onSuccess) => {
82
+ const url = locate('sqlite3.wasm', '');
83
+ const streaming = WebAssembly.instantiateStreaming
84
+ ? WebAssembly.instantiateStreaming(fetch(url, { credentials: 'same-origin' }), imports).catch(() =>
85
+ fetchAndInstantiate(url, imports),
86
+ )
87
+ : fetchAndInstantiate(url, imports);
88
+ void streaming.then(
89
+ ({ instance, module }) => onSuccess(instance, module),
90
+ error => onFailure(instantiationError(url, error)),
91
+ );
92
+ return {};
93
+ };
94
+ }
95
+
96
+ /** Fetches the wasm and instantiates it from a buffer, surfacing HTTP errors that streaming instantiation obscures. */
97
+ async function fetchAndInstantiate(
98
+ url: string,
99
+ imports: WebAssembly.Imports,
100
+ ): Promise<WebAssembly.WebAssemblyInstantiatedSource> {
101
+ const response = await fetch(url, { credentials: 'same-origin' });
102
+ if (!response.ok) {
103
+ throw new Error(`HTTP ${response.status} ${response.statusText}`.trimEnd());
104
+ }
105
+ return WebAssembly.instantiate(await response.arrayBuffer(), imports);
106
+ }
107
+
108
+ function instantiationError(source: string, cause: unknown): Error {
109
+ const detail = cause instanceof Error ? cause.message : String(cause);
110
+ return new Error(`sqlite3 wasm instantiation failed (${source}): ${detail}`, { cause });
111
+ }
112
+
113
+ /**
114
+ * Installs the global state object the vendored module's pre-js binds its `Module.locateFile` and
115
+ * `Module.instantiateWasm` wrappers to.
116
+ */
117
+ function installInitModuleState(options: Sqlite3InitOptions): void {
118
+ const urlParams = globalThis.location?.href ? new URL(globalThis.location.href).searchParams : new URLSearchParams();
119
+ const debugModule = urlParams.has('sqlite3.debugModule')
120
+ ? // eslint-disable-next-line no-console -- mirrors the vendored module's own console-based debug channel
121
+ (...args: unknown[]) => console.warn('sqlite3.debugModule:', ...args)
122
+ : () => {};
123
+ (globalThis as { sqlite3InitModuleState?: object }).sqlite3InitModuleState = Object.assign(Object.create(null), {
124
+ debugModule,
125
+ wasmFilename: 'sqlite3.wasm',
126
+ emscriptenLocateFile: options.locateFile ?? defaultLocateFile,
127
+ emscriptenInstantiateWasm: options.instantiateWasm,
128
+ });
129
+ }
130
+
131
+ /** Resolves the wasm to {@link SQLITE3_WASM_URL} so bundled consumers load the bundler-emitted asset by default. */
132
+ function defaultLocateFile(path: string, prefix: string): string {
133
+ return path === 'sqlite3.wasm' ? SQLITE3_WASM_URL.href : new URL(path, prefix || import.meta.url).href;
134
+ }
@@ -1,11 +1,11 @@
1
- 812bca8052d0e43bd8668dbd99430ee76c1cbd1be2d42087590c5c29018083c7 sqlite3-bundler-friendly.d.mts
2
- 85b8e8eb2b63ec08e106f82820a1942a07651c15a6204bc2c3510138a43b36bd sqlite3-bundler-friendly.mjs
3
- f07714bd13b703c1917b02e73f4b3a8514c2b37e2b00afe1375d4a30faa2461d sqlite3-node.mjs
4
- fc499c666c095929b5614dfa34d3f6e01cff77df2ea98abade30de97ac8db324 sqlite3-opfs-async-proxy.js
5
- 9386ab42a3fe80fddf21e5651aa898eb1a674355b070f6d1338d93ebbc6779c6 sqlite3-worker1-bundler-friendly.mjs
6
- ff0581756d86ca1397ce3f53810c29af1d8db34c4814e77271f85d4d11df108f sqlite3-worker1-promiser.js
7
- e1f0b46abdc61b45b9f64bc522324ccddfe385308ef772eef054e66ba3b013f8 sqlite3-worker1-promiser.mjs
1
+ 4ea2bcbd715b0d56089fc871ea241f8c5985d8669d1ddecaab4d56a8da806ce9 sqlite3-opfs-async-proxy.js
2
+ c043fcfadc1ded8e248ef032a27b6fcda4d66f9eee4b2a27acba02b85d17764f sqlite3-worker1-bundler-friendly.mjs
3
+ 349fc2eb7eb4fbe8b6a14779b5144f7506d3b0e14bf6385062a11013cb63d5fe sqlite3-worker1-promiser-bundler-friendly.mjs
4
+ 552fd74e051da915335eedfed5eb5c025103ad52dd3535e406ee0aabe8b43a57 sqlite3-worker1-promiser.js
5
+ 4a73a2d1c105190ac8eb58572d5a4280f04baba0bae28d8e7a8fc33d9d23750b sqlite3-worker1-promiser.mjs
8
6
  1bed25837f00f7b68943cfcabed62dfd202cae863a72af24a0d6487d7d7b0e61 sqlite3-worker1.js
9
- 0c473584c02a07793b3c320e166c25aead8131880d5ae3e719f976ccc5081fa0 sqlite3.js
10
- 4677d6c8e66fe99c29307fe2b782fce83272b760a3a617202fae8e3f3434dab5 sqlite3.mjs
11
- e0e94e4ac5221c19aefe7e59fe88ceab93bff56ec1d966c21c6cf39ac0f26735 sqlite3.wasm
7
+ aeeb5f492b283a00fe275bd667711031c72b5acc45b06483b527d62f6f9cc28b sqlite3-worker1.mjs
8
+ ed52a9f3ae2f29865ec5ba502302ef3df2ff70cb4a427733c721f2dda0a5effb sqlite3.d.mts
9
+ df462b605bf855e3415aace4e5db413fcde2234a7bf80a388b641405bdd45668 sqlite3.js
10
+ 802291c5578f935da7138689fc73deddd1a0880c7082595d7498eeaa5f8126c3 sqlite3.mjs
11
+ e7600bc6d59b1459362c8c2d4686f733e26d58041b3cdc599929661ecfeb21ae sqlite3.wasm