mirror of
https://github.com/correl/elm-mdl.git
synced 2025-04-13 01:01:04 -09: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:
|
script:
|
||||||
- elm-make --yes examples/Component.elm
|
- elm-make --yes examples/Component.elm
|
||||||
- elm-make --yes examples/Component-TEA.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:
|
demo:
|
||||||
(cd demo; elm-make Demo.elm --warn --output ../elm.js)
|
(cd demo; elm-make Demo.elm --warn --output ../elm.js)
|
||||||
|
|
||||||
docs:
|
docs: docs.json
|
||||||
|
|
||||||
|
docs.json:
|
||||||
elm-make --docs=docs.json
|
elm-make --docs=docs.json
|
||||||
|
|
||||||
wip-pages :
|
wip-pages :
|
||||||
|
@ -18,13 +20,13 @@ pages :
|
||||||
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
||||||
|
|
||||||
cleanish :
|
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
|
rm -rf elm-stuff/build-artifacts demo/elm-stuff/build-artifacts
|
||||||
|
|
||||||
distclean : clean
|
distclean : clean
|
||||||
rm -rf elm-stuff
|
rm -rf elm-stuff
|
||||||
|
|
||||||
|
|
||||||
.PHONY : pages elm.js clean cleanish distclean demo
|
.PHONY : pages elm.js clean cleanish distclean demo docs
|
||||||
|
|
Loading…
Add table
Reference in a new issue