chore: Update docs andf actions to wasm-bindgen-cli 0.2.84

This commit is contained in:
Nathan Adams 2023-02-13 02:43:16 +01:00
parent fed24aa243
commit d6abf24a81
4 changed files with 4 additions and 4 deletions

View File

@ -295,7 +295,7 @@ jobs:
# wasm-bindgen-cli version must match wasm-bindgen crate version.
# Be sure to update in test_web.yml, web/Cargo.toml and web/README.md.
- name: Install wasm-bindgen
run: cargo install wasm-bindgen-cli --version 0.2.83
run: cargo install wasm-bindgen-cli --version 0.2.84
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2

View File

@ -63,7 +63,7 @@ jobs:
# wasm-bindgen-cli version must match wasm-bindgen crate version.
# Be sure to update in release_nightly.yml, web/Cargo.toml and web/README.md.
- name: Install wasm-bindgen
run: cargo install wasm-bindgen-cli --version 0.2.83
run: cargo install wasm-bindgen-cli --version 0.2.84
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2

View File

@ -65,7 +65,7 @@ Note that npm 7 or newer is required. It should come bundled with Node.js 15 or
<!-- Be sure to also update the wasm-bindgen-cli version in `.github/workflows/*.yml` and `web/Cargo.toml`. -->
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.83`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.84`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
#### Binaryen

View File

@ -20,7 +20,7 @@ RUN wget 'https://sh.rustup.rs' --quiet -O- | sh -s -- -y
ENV PATH="/root/.cargo/bin:$PATH"
RUN rustup update
RUN rustup target add wasm32-unknown-unknown
RUN cargo install wasm-bindgen-cli --version 0.2.83
RUN cargo install wasm-bindgen-cli --version 0.2.84
COPY . ruffle
WORKDIR ruffle/web
RUN npm install