Skip to content

Commit 5e0e74f

Browse files
committed
update packages
1 parent d4442ce commit 5e0e74f

File tree

3 files changed

+21
-16
lines changed

3 files changed

+21
-16
lines changed

.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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-exceptions": "#compiler/0.12",
20-
"purescript-foreign": "#compiler/0.12",
21-
"purescript-functions": "#compiler/0.12",
22-
"purescript-node-fs": "#compiler/0.12",
23-
"purescript-node-streams": "#compiler/0.12",
24-
"purescript-nullable": "#compiler/0.12",
25-
"purescript-posix-types": "#compiler/0.12",
26-
"purescript-unsafe-coerce": "#compiler/0.12",
27-
"purescript-foreign-object": "#compiler/0.12"
19+
"purescript-exceptions": "^4.0.0",
20+
"purescript-foreign": "^5.0.0",
21+
"purescript-functions": "^4.0.0",
22+
"purescript-node-fs": "^5.0.0",
23+
"purescript-node-streams": "^4.0.0",
24+
"purescript-nullable": "^4.0.0",
25+
"purescript-posix-types": "^4.0.0",
26+
"purescript-unsafe-coerce": "^4.0.0",
27+
"purescript-foreign-object": "^1.0.0"
2828
},
2929
"devDependencies": {
30-
"purescript-console": "#compiler/0.12"
30+
"purescript-console": "^4.1.0"
3131
}
3232
}

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
"build": "eslint src && pulp build -- --censor-lib --strict"
66
},
77
"devDependencies": {
8-
"eslint": "^3.17.1",
9-
"pulp": "^11.0.0",
10-
"purescript-psa": "^0.5.0",
11-
"purescript": "^0.11.1",
12-
"rimraf": "^2.5.4"
8+
"eslint": "^4.19.1",
9+
"pulp": "^12.2.0",
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1312
}
1413
}

0 commit comments

Comments
 (0)