Skip to content

Commit

Permalink
Merge pull request #13 from garyb/updates
Browse files Browse the repository at this point in the history
Update build & fix warnings
  • Loading branch information
garyb committed Jan 21, 2016
2 parents a4fcb2c + ee7982d commit d77b213
Show file tree
Hide file tree
Showing 10 changed files with 126 additions and 733 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/.*
!/.gitignore
/output/
/node_modules/
!/.travis.yml
/bower_components/
/tmp/
/node_modules/
/node_modules/
/output/
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js
sudo: false
node_js:
- 5
install:
- npm install -g bower
- npm install
script:
- npm run test
after_success:
- >-
test $TRAVIS_TAG &&
psc-publish > .pursuit.json &&
curl -X POST http://pursuit.purescript.org/packages \
-d @.pursuit.json \
-H 'Accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}"
Loading

0 comments on commit d77b213

Please sign in to comment.