28 lines
344 B
Markdown
28 lines
344 B
Markdown
Part 14
|
|
=======
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
elm-package install
|
|
```
|
|
|
|
(Answer `y` when prompted.)
|
|
|
|
|
|
## Building
|
|
|
|
```bash
|
|
elm-live Main.elm --open --pushstate --output=elm.js
|
|
```
|
|
|
|
## Compiling CSS
|
|
|
|
```bash
|
|
elm-css Stylesheets.elm
|
|
```
|
|
|
|
## References
|
|
|
|
* [Elm in Action](https://www.manning.com/books/elm-in-action?a_aid=elm_in_action&a_bid=b15edc5c)
|