Skip to content

Commit

Permalink
Fix dependencies (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwoo authored and ethul committed Jun 6, 2018
1 parent f7f76c9 commit 8f7bebc
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: node_js
sudo: required
node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
- 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')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
script:
- bower install --production
- npm run -s build
- bower install
- npm -s test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
4 changes: 3 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
},
"dependencies": {
"purescript-exists": "^4.0.0",
"purescript-const": "^4.0.0"
"purescript-const": "^4.0.0",
"purescript-lists": "^5.0.0",
"purescript-gen": "^2.0.0"
},
"devDependencies": {
"purescript-either": "^4.0.0",
Expand Down

0 comments on commit 8f7bebc

Please sign in to comment.