mirror of
https://github.com/correl/elm-mdl.git
synced 2024-11-14 19:19:33 +00:00
travis
This commit is contained in:
parent
a733edbfd9
commit
9eb2b099c8
2 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
10
Makefile
10
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue