@pyvista-wasm/vtk-wasm-binary 9.6.20260228
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 +20 -0
- package/package.json +20 -0
- package/vtk-wasm32-emscripten.tar.gz +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @pyvista-wasm/vtk-wasm-binary
|
|
2
|
+
|
|
3
|
+
Mirrored VTK.wasm binary for pyvista-wasm, served via [jsDelivr](https://www.jsdelivr.com/) CDN.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
The binary is available at:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
https://cdn.jsdelivr.net/npm/@pyvista-wasm/vtk-wasm-binary@<version>/vtk-wasm32-emscripten.tar.gz
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Updating
|
|
14
|
+
|
|
15
|
+
1. Update the `version` in `package.json` to match the upstream VTK.wasm version.
|
|
16
|
+
1. Run `npm run download` to fetch the binary from upstream.
|
|
17
|
+
1. Publish with `npm publish`.
|
|
18
|
+
|
|
19
|
+
The [mirror-vtk-wasm](.github/workflows/mirror-vtk-wasm.yml) workflow automates
|
|
20
|
+
steps 2 and 3.
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pyvista-wasm/vtk-wasm-binary",
|
|
3
|
+
"version": "9.6.20260228",
|
|
4
|
+
"description": "Mirrored VTK.wasm binary for pyvista-wasm (served via jsDelivr CDN)",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/tkoyama010/pyvista-wasm.git",
|
|
9
|
+
"directory": "packages/vtk-wasm-binary"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"vtk-wasm32-emscripten.tar.gz"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"download": "node download.mjs"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
Binary file
|