We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29bd8c commit 68b0f00Copy full SHA for 68b0f00
.gitignore
@@ -1,5 +1,4 @@
1
-.*
2
-!/.gitignore
+.psci
3
/output/
4
/node_modules/
5
/bower_components/
.travis.yml
@@ -0,0 +1,15 @@
+language: node_js
+node_js:
+ - 0.10
+env:
+ - 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 update
14
+script:
15
+ - grunt
0 commit comments