Repository
Current version released
5 years ago
DevElm
Develop Elm programs with ease!
Setup
DevElm is released as a binary and module for deno.
DevElm relies on elm being installed and available.
Documentation is available on the elm-package website.
Usage
- run
elm install opvasger/develmto install the configuration-package. - Make a
Dev.elmin the same directory as the projectselm.json. It should importDevElmand expose aconfigof typeConfiguration- for example like this:
module Dev exposing (config)
import DevElm exposing (defaultBuild)
config : DevElm.Configuration
config =
DevElm.Build { defaultBuild | mode = DevElm.Optimize }- run
develmordeno run https://deno.land/x/develm/mod.tsto perform configured task(s).