File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 11. *
22! /.bowerrc
33! /.gitignore
4+ ! /.travis.yml
45/bower_components /
56/node_modules /
67/output /
Original file line number Diff line number Diff line change 1+ language : node_js
2+ node_js :
3+ - 0.10
4+ env :
5+ - PATH=$HOME/purescript:$PATH
6+ install :
7+ - TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
8+ - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
9+ - tar -xvf $HOME/purescript.tar.gz -C $HOME/
10+ - chmod a+x $HOME/purescript
11+ - npm install bower grunt-cli -g
12+ - npm install
13+ - bower install
14+ script :
15+ - grunt make
16+ - grunt examples
You can’t perform that action at this time.
0 commit comments