@livestore/sqlite-wasm 0.0.0-snapshot-057a9e3a18ca69a310d4eb8cf35a34e94fa1841e → 0.0.0-snapshot-8fd59846e2580d37bdd37ae607e9db2a458a8b63

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.
@@ -1,5 +1,6 @@
1
1
  /// <reference types="node" />
2
2
 
3
+ /* eslint-disable prefer-arrow/prefer-arrow-functions */
3
4
  import * as fs from 'node:fs'
4
5
  import path from 'node:path'
5
6
 
package/README.md DELETED
@@ -1,20 +0,0 @@
1
- # @livestore/sqlite-wasm
2
-
3
- ## Export Conditions
4
-
5
- ```json
6
- "./load-wasm": {
7
- "types": "./dist/load-wasm/mod.browser.d.ts",
8
- "browser": "./dist/load-wasm/mod.browser.js",
9
- "worker": "./dist/load-wasm/mod.browser.js",
10
- "node": "./dist/load-wasm/mod.node.js",
11
- "default": "./dist/load-wasm/mod.browser.js"
12
- }
13
- ```
14
-
15
- - **`browser`**: Web environments, uses browser APIs
16
- - **`worker`**: Web workers, ensures browser version is used (used by Vite)
17
- - **`node`**: Node.js environments (CI tests), uses Node.js APIs
18
- - **`default`**: Fallback to browser version
19
-
20
- Order matters - browser/worker first ensures Vite web worker builds resolve correctly.