Skip to content

Instantly share code, notes, and snippets.

@jbolila
Created February 16, 2016 19:00
Show Gist options
  • Save jbolila/d2feff075d2e6aad13de to your computer and use it in GitHub Desktop.
Save jbolila/d2feff075d2e6aad13de to your computer and use it in GitHub Desktop.
Elm simple make
{
"private": true,
"scripts": {
"postinstall": "npm start",
"start": "npm-run-all --parallel server watch:*",
"watch:elm": "chokidar ./src -c 'npm run build:elm' --initial",
"build": "npm-run-all build:*",
"build:elm": "elm-make src/*.elm --output js/elmapp.compiled.js --warn",
"server": "live-server ./ --port=8000 --host=127.0.0.1"
},
"dependencies": {
"chokidar-cli": "*",
"elm": "*",
"live-server": "*",
"npm-run-all": "*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment