Skip to main content

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

  1. run elm install opvasger/develm to install the configuration-package.
  2. Make a Dev.elm in the same directory as the projects elm.json. It should import DevElm and expose a config of type Configuration - for example like this:
module Dev exposing (config)

import DevElm exposing (defaultBuild)

config : DevElm.Configuration
config =
    DevElm.Build { defaultBuild | mode = DevElm.Optimize }
  1. run develm or deno run https://deno.land/x/develm/mod.ts to perform configured task(s).