diff options
author | stephan <stephan@noemail.net> | 2022-10-19 06:06:42 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-10-19 06:06:42 +0000 |
commit | 3117dc60e30dc65455f23c0e7e4230dc6c635ae1 (patch) | |
tree | 1784342ccec3b953a9e6199ac5f5a5ac52db43d3 /ext/wasm/api | |
parent | cd0df83c156d12c89bcbe41420af51d83444855d (diff) | |
download | sqlite-3117dc60e30dc65455f23c0e7e4230dc6c635ae1.tar.gz sqlite-3117dc60e30dc65455f23c0e7e4230dc6c635ae1.zip |
Update the dist rules for this evening's js/wasm build changes and include an index.html specifically for the subset of apps included in the dist archive.
FossilOrigin-Name: a0ef0f32e96638b502b3951e524d590bdfb09dd39be453686b075102da67b7db
Diffstat (limited to 'ext/wasm/api')
-rw-r--r-- | ext/wasm/api/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/wasm/api/README.md b/ext/wasm/api/README.md index dfb13c569..6440eba99 100644 --- a/ext/wasm/api/README.md +++ b/ext/wasm/api/README.md @@ -64,12 +64,12 @@ browser client: thread via the Worker message-passing interface. Like OO API #1, this is an optional component, offering one of any number of potential implementations for such an API. - - `../sqlite3-worker1.js`\ + - `sqlite3-worker1.js`\ Is not part of the amalgamated sources and is intended to be loaded by a client Worker thread. It loads the sqlite3 module and runs the Worker #1 API which is implemented in `sqlite3-api-worker1.js`. - - `../sqlite3-worker1-promiser.js`\ + - `sqlite3-worker1-promiser.js`\ Is likewise not part of the amalgamated sources and provides a Promise-based interface into the Worker #1 API. This is a far user-friendlier way to interface with databases running @@ -78,7 +78,7 @@ browser client: is an sqlite3 VFS implementation which supports Google Chrome's Origin-Private FileSystem (OPFS) as a storage layer to provide persistent storage for database files in a browser. It requires... - - `../sqlite3-opfs-async-proxy.js`\ + - `sqlite3-opfs-async-proxy.js`\ is the asynchronous backend part of the OPFS proxy. It speaks directly to the (async) OPFS API and channels those results back to its synchronous counterpart. This file, because it must be |