Created
February 16, 2016 19:00
-
-
Save jbolila/d2feff075d2e6aad13de to your computer and use it in GitHub Desktop.
Elm simple make
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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