elm-make can't find files after moving files into subdirectory

Viewed 473

I refactored my Elm code to be located in the src directory. And I updated elm-package.json to have "source-directories": [ "src" ],

However, now when I run elm-make Main.elm I get this error message:

elm-make: Main.elm: openFile: does not exist (No such file or directory)

Is there another configuration somewhere else I need to make to have elm-make be able to find my code?

1 Answers
Related