@@ -45,9 +45,9 @@ I want to show you how to create, build and host your website for free, so we wi
4545
46461 . Make sure you have basic tools installed:
4747
48- - [ Yarn] ( https://yarnpkg.com/lang/en/docs/install ) - run ` $ yarn -v ` in terminal. It should output something like ` 1.17.3 `
49- - [ Node.js] ( https://nodejs.org ) - ` $ node -v ` => ` v10.16.3 `
50- - [ Rust] ( https://www.rust-lang.org/tools/install ) - ` $ rustc -V ` => ` rustc 1.38.0 (625451e37 2019-09-23 ) `
48+ - [ Yarn] ( https://yarnpkg.com/lang/en/docs/install ) - run ` $ yarn -v ` in terminal. It should output something like ` 1.22.4 `
49+ - [ Node.js] ( https://nodejs.org ) - ` $ node -v ` => ` v12.13.0 `
50+ - [ Rust] ( https://www.rust-lang.org/tools/install ) - ` $ rustc -V ` => ` rustc 1.43.1 (8d69840ab 2020-05-04 ) `
5151 - Rust target ` wasm ` - ` $ rustup target list ` => ` .. wasm32-unknown-unknown (installed) .. `
5252 - Install: ` $ rustup target add wasm32-unknown-unknown `
5353
@@ -60,15 +60,15 @@ I want to show you how to create, build and host your website for free, so we wi
6060 - [ wasm-pack] ( https://rustwasm.github.io/wasm-pack/ )
6161
6262 - Check: ` $ wasm-pack -V ` => ` wasm-pack 0.9.1 `
63- - Install: ` $ cargo install --force wasm-pack `
63+ - Install: ` $ cargo install wasm-pack `
6464
6565 - [ cargo-make] ( https://sagiegurari.github.io/cargo-make/ )
6666
67- - Check: ` $ cargo make -V ` => ` cargo-make 0.22.1 `
68- - Install: ` $ cargo install --force cargo-make `
67+ - Check: ` $ cargo make -V ` => ` cargo-make 0.30.7 `
68+ - Install: ` $ cargo install cargo-make `
6969
7070 - [ nightly rustfmt] ( https://github.com/rust-lang/rustfmt#on-the-nightly-toolchain )
71- - Check: ` $ cargo +nightly fmt -- -V ` => ` rustfmt 1.4.8 -nightly (afb1ee1c 2019-09-08 ) `
71+ - Check: ` $ cargo +nightly fmt -- -V ` => ` rustfmt 1.4.14 -nightly (a5cb5d26 2020-04-14 ) `
7272 - Install:
7373 1 . ` $ rustup toolchain install nightly `
7474 2 . ` $ rustup component add rustfmt --toolchain nightly `
0 commit comments