mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
This PR updates web-sys & wasm to the newest version. (this was already part of the POC #4954 ) * Closes <https://github.com/emilk/egui/issues/4961> * Closes <https://github.com/emilk/egui/issues/4958> * [x] I have followed the instructions in the PR template
11 lines
258 B
Bash
Executable File
11 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
|
|
# Pre-requisites:
|
|
rustup target add wasm32-unknown-unknown
|
|
|
|
# For generating JS bindings:
|
|
cargo install --quiet wasm-bindgen-cli --version 0.2.93
|