Skip to content

Commit 942fdb7

Browse files
committed
updates for 0.12
1 parent c47cd9d commit 942fdb7

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@ language: node_js
22
dist: trusty
33
sudo: required
44
node_js: stable
5+
env:
6+
- PATH=$HOME/purescript:$PATH
57
install:
8+
- 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')
9+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10+
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11+
- chmod a+x $HOME/purescript
612
- npm install -g bower
713
- npm install
814
script:
915
- bower install --production
1016
- npm run -s build
1117
- bower install
12-
- npm -s test
18+
- npm run -s test
1319
after_success:
1420
- >-
1521
test $TRAVIS_TAG &&

bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
"package.json"
2828
],
2929
"dependencies": {
30-
"purescript-enums": "#compiler/0.12",
31-
"purescript-functions": "#compiler/0.12",
32-
"purescript-gen": "#compiler/0.12",
33-
"purescript-foreign-object": "#compiler/0.12"
30+
"purescript-enums": "^4.0.0",
31+
"purescript-functions": "^4.0.0",
32+
"purescript-gen": "^2.0.0",
33+
"purescript-foreign-object": "^1.0.0"
3434
},
3535
"devDependencies": {
36-
"purescript-quickcheck": "#compiler/0.12"
36+
"purescript-quickcheck": "^5.0.0"
3737
}
3838
}

0 commit comments

Comments
 (0)