www: update README to remove wasm-pack; use cargo web start

wasm-pack is more broken, see https://github.com/iceiix/stevenarella/issues/171#issuecomment-581151711
cargo web start is still broken (#171) but less so
This commit is contained in:
ice_iix 2020-02-02 09:07:51 -08:00
parent dece047cd7
commit 472208cc8c
1 changed files with 2 additions and 10 deletions

View File

@ -7,15 +7,7 @@ for progress see: [https://github.com/iceiix/stevenarella/issues/171](https://gi
## Building
To build for wasm32-unknown-unknown, run in the top-level directory (not www):
```sh
rustup target add wasm32-unknown-unknown
cargo install wasm-bindgen-cli
wasm-pack build
```
or:
To build for wasm32-unknown-unknown, run:
```sh
cargo web start --target wasm32-unknown-unknown
@ -38,7 +30,7 @@ open http://localhost:8080/
## Credits
Based on `[rustwasm/create-wasm-app](https://github.com/rustwasm/create-wasm-app)`:
Based on [rustwasm/create-wasm-app](https://github.com/rustwasm/create-wasm-app):
> An `npm init` template for kick starting a project that uses NPM packages
> containing Rust-generated WebAssembly and bundles them with Webpack.