diff --git a/README.md b/README.md index 448bce7..afbcbc0 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Getting Started > **Note:** Make sure not to run this command with `sudo`! If it gives you an `EACCESS` error, apply [**this fix**](https://docs.npmjs.com/getting-started/fixing-npm-permissions#option-two-change-npms-default-directory) and then re-run the command (still without `sudo`). ```shell -npm install -g elm elm-test elm-live@2.7.5 elm-format@exp +npm install -g elm elm-test elm-format@exp ``` You can confirm this worked by running: @@ -62,7 +62,7 @@ In the new termnal, `cd` into the `elm-workshop` directory again. Then run this to build the Elm code for the first time: ```shell -elm live Main.elm --output=server/public/elm.js --pushstate --open +elm make Main.elm --output=server/public/elm.js --pushstate --open ``` A browser should open, and you should see this in it: diff --git a/part1/README.md b/part1/README.md index a8e7de5..0633674 100644 --- a/part1/README.md +++ b/part1/README.md @@ -3,5 +3,5 @@ To build everything: ``` -elm-live --output=../server/public/elm.js src/Main.elm --pushstate --open +elm make --output=../server/public/elm.js src/Main.elm --pushstate --open ``` diff --git a/part2/README.md b/part2/README.md index c605e4a..05f7163 100644 --- a/part2/README.md +++ b/part2/README.md @@ -3,5 +3,5 @@ To build everything: ``` -elm-live --output=../server/public/elm.js src/Main.elm --pushstate --open +elm make --output=../server/public/elm.js src/Main.elm --pushstate --open ``` diff --git a/part3/README.md b/part3/README.md index c605e4a..05f7163 100644 --- a/part3/README.md +++ b/part3/README.md @@ -3,5 +3,5 @@ To build everything: ``` -elm-live --output=../server/public/elm.js src/Main.elm --pushstate --open +elm make --output=../server/public/elm.js src/Main.elm --pushstate --open ``` diff --git a/part4/README.md b/part4/README.md index c605e4a..05f7163 100644 --- a/part4/README.md +++ b/part4/README.md @@ -3,5 +3,5 @@ To build everything: ``` -elm-live --output=../server/public/elm.js src/Main.elm --pushstate --open +elm make --output=../server/public/elm.js src/Main.elm --pushstate --open ```