We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7febf commit ebb7e66Copy full SHA for ebb7e66
2 files changed
.github/workflows/rust-ci.yaml
@@ -113,7 +113,7 @@ jobs:
113
- name: Generate JS glue with wasm-bindgen
114
run: |
115
cd webui
116
- wasm-pack build -t web --out-dir pkg --out-name wirefilter_wasm --no-pack --no-typescript
+ wasm-pack build -t web --out-dir pkg --out-name wirefilter_wasm --no-pack --no-typescript --profile wasm-release
117
118
# Show package contents and sizes
119
ls -la ./pkg
webui/README.md
@@ -3,5 +3,5 @@
3
Build the wasm files:
4
5
```shell
6
-wasm-pack build -t web --out-dir pkg --out-name wirefilter_wasm --no-pack --no-typescript;
+wasm-pack build -t web --out-dir pkg --out-name wirefilter_wasm --no-pack --no-typescript --profile wasm-release
7
```
0 commit comments