├── .gitignore ├── README.md ├── bin.js ├── elm-package.json ├── index.js ├── package.json └── test ├── dist └── test.html └── src ├── Constants.elm ├── Example.elm ├── Main.elm └── SomeModule └── Sub.elm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/bin.js -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/elm-package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/package.json -------------------------------------------------------------------------------- /test/dist/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/test/dist/test.html -------------------------------------------------------------------------------- /test/src/Constants.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/test/src/Constants.elm -------------------------------------------------------------------------------- /test/src/Example.elm: -------------------------------------------------------------------------------- 1 | module Example exposing (..) 2 | 3 | foo = "bar" 4 | -------------------------------------------------------------------------------- /test/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/test/src/Main.elm -------------------------------------------------------------------------------- /test/src/SomeModule/Sub.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxgurewitz/elm-server/HEAD/test/src/SomeModule/Sub.elm --------------------------------------------------------------------------------