rtfeldman / elm-workshop

An introductory Elm workshop. Video available on Frontend Masters!
https://frontendmasters.com/courses/elm/?u=ea0ec073ea98046a6a26ccd9a0adede4d5458676
Other
441 stars 173 forks source link

Update CSS compiler to match latest ElmCSS docs #15

Open bdugan14 opened 7 years ago

bdugan14 commented 7 years ago

I get the following errors when I run elm-css Stylesheets.elm before making any changes in tutorial part13:

-- NAMING ERROR ------------------------------------------------ Stylesheets.elm

Cannot find type `Model`

16| main : Program Never Model Msg
                         ^^^^^

-- NAMING ERROR ------------------------------------------------ Stylesheets.elm

Cannot find type `Msg`

16| main : Program Never Model Msg
                               ^^^

Detected errors in 1 module.                                        
Error: Errored with exit code 1

If I update Stylesheets.elm to match the ElmCss docs (special module in "Approach 2"), it works fine.