@bio-rs/biors-wasm 0.55.0 → 0.56.0
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 +3 -3
- package/biors_wasm_bg.wasm +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,13 +62,13 @@ not upload input data, and do not persist records.
|
|
|
62
62
|
cargo check -p biors-wasm --target wasm32-unknown-unknown
|
|
63
63
|
|
|
64
64
|
# Build for bundlers
|
|
65
|
-
wasm-pack build
|
|
65
|
+
wasm-pack build crates/biors-wasm --target bundler
|
|
66
66
|
|
|
67
67
|
# Enable browser panic stack traces for local debugging
|
|
68
|
-
wasm-pack build
|
|
68
|
+
wasm-pack build crates/biors-wasm --target bundler --features console_error_panic_hook
|
|
69
69
|
|
|
70
70
|
# Run browser tests
|
|
71
|
-
wasm-pack test --headless --chrome
|
|
71
|
+
wasm-pack test --headless --chrome crates/biors-wasm
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
## License
|
package/biors_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"name": "@bio-rs/biors-wasm",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "WebAssembly bindings for bio-rs biological sequence processing",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.56.0",
|
|
6
6
|
"license": "MIT OR Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/bio-rs/bio-rs.git",
|
|
10
|
-
"directory": "
|
|
10
|
+
"directory": "crates/biors-wasm"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"LICENSE-APACHE",
|