sqlite-actor 0.1.5 → 0.1.6

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/README.md +4 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,10 @@ Currently, `sqlite-actor` bundles the following extensions directly into its WAS
30
30
  npm install sqlite-actor
31
31
  ```
32
32
 
33
- ### Basic Usage (Cloudflare Durable Objects)
33
+ > [!TIP]
34
+ > **Using Cloudflare Workers?** You must import the WASM module directly to avoid "No-Eval" restrictions. See the [Cloudflare Workers section](#cloudflare-workers--durable-objects) below.
35
+
36
+ ### Basic Usage
34
37
  ```javascript
35
38
  import { SqliteActor } from "sqlite-actor";
36
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqlite-actor",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "SQLite + sqlite-vec vector database for actor platforms",
6
6
  "main": "dist/index.js",