@@ -45,9 +45,9 @@ I want to show you how to create, build and host your website for free, so we wi
45
45
46
46
1 . Make sure you have basic tools installed:
47
47
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 ) `
51
51
- Rust target ` wasm ` - ` $ rustup target list ` => ` .. wasm32-unknown-unknown (installed) .. `
52
52
- Install: ` $ rustup target add wasm32-unknown-unknown `
53
53
@@ -60,15 +60,15 @@ I want to show you how to create, build and host your website for free, so we wi
60
60
- [ wasm-pack] ( https://rustwasm.github.io/wasm-pack/ )
61
61
62
62
- Check: ` $ wasm-pack -V ` => ` wasm-pack 0.9.1 `
63
- - Install: ` $ cargo install --force wasm-pack `
63
+ - Install: ` $ cargo install wasm-pack `
64
64
65
65
- [ cargo-make] ( https://sagiegurari.github.io/cargo-make/ )
66
66
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 `
69
69
70
70
- [ 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 ) `
72
72
- Install:
73
73
1 . ` $ rustup toolchain install nightly `
74
74
2 . ` $ rustup component add rustfmt --toolchain nightly `
0 commit comments