@craftlions/pdfium-rs 0.0.8 → 0.0.10
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 +30 -0
- package/npm/darwin-arm64/libpdfium.dylib +0 -0
- package/npm/darwin-arm64/package.json +1 -1
- package/npm/darwin-arm64/pdfium.darwin-arm64.node +0 -0
- package/npm/darwin-x64/libpdfium.dylib +0 -0
- package/npm/darwin-x64/package.json +1 -1
- package/npm/darwin-x64/pdfium.darwin-x64.node +0 -0
- package/npm/linux-x64-gnu/libpdfium.so +0 -0
- package/npm/linux-x64-gnu/package.json +1 -1
- package/npm/linux-x64-gnu/pdfium.linux-x64-gnu.node +0 -0
- package/npm/win32-x64-msvc/package.json +1 -1
- package/npm/win32-x64-msvc/pdfium.lib +0 -0
- package/npm/win32-x64-msvc/pdfium.win32-x64-msvc.node +0 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -14,3 +14,33 @@ Make rust crates binding to Node.js use [napi-rs](https://github.com/napi-rs/nap
|
|
|
14
14
|
| -------------------------------------------------- | ----------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
|
|
15
15
|
| [`@craftlions/pdfium-rs`](./) |  |  | `pdfium` |
|
|
16
16
|
| [`@craftlions/oxipng-rs`](./) |  |  | `oxipng` |
|
|
17
|
+
|
|
18
|
+
# RELEASE
|
|
19
|
+
|
|
20
|
+
```zsh
|
|
21
|
+
node scripts/update.ts
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
```zsh
|
|
25
|
+
pnpm changeset
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```zsh
|
|
29
|
+
git commit -m "update to PDFium 146.0.7678.0"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```zsh
|
|
33
|
+
pnpm changeset version
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```zsh
|
|
37
|
+
git commit -m "release v0.0.9"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
```zsh
|
|
41
|
+
git tag v0.0.9
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
```zsh
|
|
45
|
+
git push origin main --tags
|
|
46
|
+
```
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftlions/pdfium-rs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/craftlions/rs"
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"typescript": "5.9.3"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@craftlions/pdfium-rs-darwin-arm64": "0.0.
|
|
52
|
-
"@craftlions/pdfium-rs-darwin-x64": "0.0.
|
|
53
|
-
"@craftlions/pdfium-rs-linux-x64-gnu": "0.0.
|
|
54
|
-
"@craftlions/pdfium-rs-win32-x64-msvc": "0.0.
|
|
51
|
+
"@craftlions/pdfium-rs-darwin-arm64": "0.0.10",
|
|
52
|
+
"@craftlions/pdfium-rs-darwin-x64": "0.0.10",
|
|
53
|
+
"@craftlions/pdfium-rs-linux-x64-gnu": "0.0.10",
|
|
54
|
+
"@craftlions/pdfium-rs-win32-x64-msvc": "0.0.10"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"test": "node test.mjs"
|