This commit is contained in:
Søren Debois 2016-04-12 19:06:07 +02:00
parent a733edbfd9
commit 9eb2b099c8
2 changed files with 7 additions and 5 deletions

View file

@ -5,5 +5,5 @@ install:
script:
- elm-make --yes examples/Component.elm
- elm-make --yes examples/Component-TEA.elm
- elm-make --yes demo/Demo.elm
- cd demo && elm-make --yes Demo.elm

View file

@ -6,7 +6,9 @@ comp:
demo:
(cd demo; elm-make Demo.elm --warn --output ../elm.js)
docs:
docs: docs.json
docs.json:
elm-make --docs=docs.json
wip-pages :
@ -18,13 +20,13 @@ pages :
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
cleanish :
rm -f elm.js index.html
rm -f elm.js index.html docs.json
clean :
clean : cleanish
rm -rf elm-stuff/build-artifacts demo/elm-stuff/build-artifacts
distclean : clean
rm -rf elm-stuff
.PHONY : pages elm.js clean cleanish distclean demo
.PHONY : pages elm.js clean cleanish distclean demo docs