diff --git a/actions/setup-build/action.yml b/actions/setup-build/action.yml index d5b0b2a064..44d97a8302 100644 --- a/actions/setup-build/action.yml +++ b/actions/setup-build/action.yml @@ -22,8 +22,8 @@ runs: conda-channels: anaconda, conda-forge - name: Install wasm-pack (macOS GH runners only) env: - WASMPACKURL: https://github.com/rustwasm/wasm-pack/releases/download/v0.10.2 - WASMPACKDIR: wasm-pack-v0.10.2-x86_64-apple-darwin + WASMPACKURL: https://github.com/rustwasm/wasm-pack/releases/download/v0.10.3 + WASMPACKDIR: wasm-pack-v0.10.3-x86_64-apple-darwin run: |- curl -L "$WASMPACKURL/$WASMPACKDIR.tar.gz" | tar -xz -C . mv $WASMPACKDIR/wasm-pack ~/.cargo/bin diff --git a/app/gui/docs/CONTRIBUTING.md b/app/gui/docs/CONTRIBUTING.md index bb698276ea..068d726629 100644 --- a/app/gui/docs/CONTRIBUTING.md +++ b/app/gui/docs/CONTRIBUTING.md @@ -62,9 +62,9 @@ setup: In addition, some custom CLI programs need to be installed manually: ```bash - rustup toolchain install stable # Stable toolchain required for the following tools. - cargo +stable install wasm-pack --version 0.10.2 # Install the wasm-pack toolkit. - cargo +stable install cargo-watch # To enable `./run wasm watch` utility + rustup toolchain install stable # Stable toolchain required for the following tools. + cargo +stable install wasm-pack # Install the wasm-pack toolkit. + cargo +stable install cargo-watch # To enable `./run wasm watch` utility ``` Make sure that your `PATH` environment variable is set up correctly, so that diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index eaa062e110..7835512676 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -218,9 +218,9 @@ Please consult the [GUI Contribution Guide](../app/gui/docs/CONTRIBUTING.md) to learn details on setting your system up. Quick summary: ```bash -enso$ rustup toolchain install stable # Stable toolchain required for the following tools. -enso$ cargo +stable install wasm-pack --version 0.10.2 # Install the wasm-pack toolkit. -enso$ cargo +stable install cargo-watch # To enable `./run wasm watch` utility +enso$ rustup toolchain install stable # Stable toolchain required for the following tools. +enso$ cargo +stable install wasm-pack # Install the wasm-pack toolkit. +enso$ cargo +stable install cargo-watch # To enable `./run wasm watch` utility ``` The previous three steps shall be enough to build the IDE via