@birchill/nice-sqlite-wasm 0.0.1 → 0.0.2
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 +10 -0
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -145,3 +145,13 @@ Then run:
|
|
|
145
145
|
```
|
|
146
146
|
pnpm build
|
|
147
147
|
```
|
|
148
|
+
|
|
149
|
+
### Making changes
|
|
150
|
+
|
|
151
|
+
After making changes, to update the changelog run:
|
|
152
|
+
|
|
153
|
+
```
|
|
154
|
+
pnpm changeset
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
Don't forget to add the changeset file created in `/.changeset` to the commit.
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@birchill/nice-sqlite-wasm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"private": false,
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/birchill/nice-sqlite-wasm"
|
|
8
|
+
},
|
|
5
9
|
"files": [
|
|
6
10
|
"LICENSE",
|
|
7
11
|
"README.md",
|
|
@@ -13,7 +17,11 @@
|
|
|
13
17
|
".": {
|
|
14
18
|
"types": "./dist/sqlite3.d.ts",
|
|
15
19
|
"import": "./dist/sqlite3.js"
|
|
16
|
-
}
|
|
20
|
+
},
|
|
21
|
+
"./sqlite3.wasm": "./dist/sqlite3.wasm"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"provenance": true
|
|
17
25
|
},
|
|
18
|
-
"publishedAt": "2026-01-
|
|
26
|
+
"publishedAt": "2026-01-14T04:43:12.688Z"
|
|
19
27
|
}
|