A Broccoli plugin for Elm.
npm install --save broccoli-elmvar BroccoliElm = require('broccoli-elm');
var outputNode = new BroccoliElm("directory/containing/elm-files", {
destination: "elm-app.js" // relative to input path
});{
annotation: undefined, // String: annotate the broccoli-elm plugin instance
cwd: undefined, // String: working directory of the child process
pathToMake: "elm-make", // String: alternative path to elm-make
destination: "/elm.js", // String: name your elm JS bundle,
compilerArgs: {
yes: false // Boolean: auto-yes all automatic prompts
}
}The --output flag for elm-make is managed by broccoli-elm. Use the destination option to specify the path of the output tree.
Install deps via npm install, then run tests via npm run test.
Support building multiple elm main JS files.