We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's say you have a file Foo.elm with:
Foo.elm
module Foo exposing (main) import Html exposing (..) main = div [] [ text "Hello from Foo!" ]
and a second file Bar.elm with:
Bar.elm
module Bar exposing (main) import Html exposing (..) main = div [] [ text "Hello from Bar!" ]
elm make let's you compile both apps to a single output file:
elm make
% elm make Foo.elm Bar.elm --output out.js Success! Compiled 2 modules. Foo ───┬──> out.js Bar ───┘
Unfortunately this apparently doesn't work with elm-live as it requires a single main.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say you have a file
Foo.elm
with:and a second file
Bar.elm
with:elm make
let's you compile both apps to a single output file:Unfortunately this apparently doesn't work with elm-live as it requires a single main.
The text was updated successfully, but these errors were encountered: