Skip to content

Commit d77b213

Browse files
committed
Merge pull request #13 from garyb/updates
Update build & fix warnings
2 parents a4fcb2c + ee7982d commit d77b213

File tree

10 files changed

+126
-733
lines changed

10 files changed

+126
-733
lines changed

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/.*
22
!/.gitignore
3-
/output/
4-
/node_modules/
3+
!/.travis.yml
54
/bower_components/
6-
/tmp/
7-
/node_modules/
5+
/node_modules/
6+
/output/

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: node_js
2+
sudo: false
3+
node_js:
4+
- 5
5+
install:
6+
- npm install -g bower
7+
- npm install
8+
script:
9+
- npm run test
10+
after_success:
11+
- >-
12+
test $TRAVIS_TAG &&
13+
psc-publish > .pursuit.json &&
14+
curl -X POST http://pursuit.purescript.org/packages \
15+
-d @.pursuit.json \
16+
-H 'Accept: application/json' \
17+
-H "Authorization: token ${GITHUB_TOKEN}"

0 commit comments

Comments
 (0)