Skip to content

Commit 59fd990

Browse files
committed
Update dependencies
1 parent 2f78fca commit 59fd990

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

.gitignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
.psci*
2-
bower_components/
3-
output/
4-
.psc-package
5-
.psc-ide-port
1+
/.*
2+
!/.gitignore
3+
!/.travis.yml
4+
package-lock.json
5+
/bower_components/
6+
/node_modules/
7+
/output/

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
language: node_js
22
dist: trusty
33
sudo: required
4-
node_js: 6
4+
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:

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"url": "git://github.com/purescript-contrib/purescript-aff-coroutines.git"
1515
},
1616
"dependencies": {
17-
"purescript-aff": "#compiler/0.12",
18-
"purescript-avar": "#compiler/0.12",
19-
"purescript-console": "#compiler/0.12",
20-
"purescript-coroutines": "#compiler/0.12"
17+
"purescript-aff": "^5.0.0",
18+
"purescript-avar": "^3.0.0",
19+
"purescript-console": "^4.1.0",
20+
"purescript-coroutines": "^5.0.0"
2121
}
2222
}

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"pulp": "^11.0.0",
10-
"purescript-psa": "^0.5.0",
11-
"purescript": "^0.11.0",
12-
"rimraf": "^2.5.4"
9+
"pulp": "^12.2.0",
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1312
}
1413
}

0 commit comments

Comments
 (0)