elm-webpack-loader
elm-webpack-loader copied to clipboard
Webpack loader for the Elm programming language.
OS: Windows There's a space in my windows user name, so my path to elm is this: `C:\\Users\\Kurren Nischal\\Documents\\Development stuff\\MyProject\\node_modules\\.bin\\elm` When running webpack I get this error: ``` webpack --env.mode...
There is currently a gap in releases between the github releases page and releases versions on npm. It might be nice to integrate both in the process of releases, otherwise...
This might be a peculiarity of my setup but I have 4 separate elm apps being built by webpack and when ever I make a change all 4 rebuild. Even...
It seems that import statement should be corrected  Following works perfectly ``` import {Elm} from "./elm/Main"; ```
Hi, while setting `elm-webpack-loader`, I got the error Module build failed: Error: Cannot find module 'node-elm-compiler' so I run `yarn install node-elm-compiler` to resolve the issue, but it could not...
A recent vulnerability was found in older versions of `lodash` (the version that `elm-webpack-loader` seems to depend on transitively through `node-elm-compiler`). Result of `npm audit`: ``` === npm audit security...
Anytime I save my a `.elm` source file, everything seems to compile just fine, but whenever I save my `app.js` file I get the following error: ``` Uncaught Error: Module...
Elm v0.19. While `elm make` works and compiles this GLSL code (it uses [`elm-explorations/webgl`](https://github.com/elm-explorations/webgl), see examples there), `elm-webpack-loader` fails to run it: ``` fragmentShader : WebGL.Shader {} Uniforms { vcolor...
When one removes an element from the "exposing" list of a module, it does not trigger a compilation of the modules that used the removed element. This leads to a...
Hello! I'm trying to fix an issue we're having where saving a single Elm file when running `webpack-dev-server` causes multiple `"Compiling Elm files..."` lines and in general takes a long...