web-sqlite-js 1.0.3 → 1.0.5

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -66,7 +66,7 @@ For quick demos or plain HTML pages you can load the prebuilt module directly:
66
66
 
67
67
  ```html
68
68
  <script type="module">
69
- import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@1.0.3/dist/index.js";
69
+ import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@1.0.5/dist/index.js";
70
70
  // ...
71
71
  </script>
72
72
  ```
@@ -275,3 +275,9 @@ await db.transaction(async (tx) => {
275
275
  // throw new Error('Something went wrong');
276
276
  });
277
277
  ```
278
+
279
+ ## Star History
280
+
281
+ <p align="left">
282
+ <img src="https://api.star-history.com/svg?repos=wuchuheng/web-sqlite-js&type=date&legend=top-left" alt="Star History" width='50%'/>
283
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-sqlite-js",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "web-sqlite-js is a friendly, out-of-the-box SQLite database for the web that makes persistent client-side storage simple for every developer.",
5
5
  "workspaces": [
6
6
  "docs"