Skip to content

Commit acb37d5

Browse files
committed
changes for 0.12
1 parent 8eacf46 commit acb37d5

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
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
8-
- bower install --production
914
script:
15+
- bower install --production
1016
- npm run -s build
1117
- bower install
12-
- npm run -s test
18+
- npm test
1319
after_success:
1420
- >-
1521
test $TRAVIS_TAG &&

bower.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-prelude": "^3.0.0",
20-
"purescript-parsing": "^4.2.1",
21-
"purescript-fixed-points": "^4.0.0",
22-
"purescript-datetime": "^v3.3.0",
23-
"purescript-transformers": "^3.4.0",
24-
"purescript-lists": "^4.3.0",
25-
"purescript-generics-rep": "^5.0.0"
19+
"purescript-prelude": "^4.0.0",
20+
"purescript-parsing": "^4.3.1",
21+
"purescript-fixed-points": "^5.0.0",
22+
"purescript-datetime": "^4.0.0",
23+
"purescript-transformers": "^4.1.0",
24+
"purescript-lists": "^5.0.0",
25+
"purescript-generics-rep": "^6.0.0"
2626
},
2727
"devDependencies": {
28-
"purescript-aff": "^3.0.0",
29-
"purescript-console": "^3.0.0",
30-
"purescript-psci-support": "^3.0.0",
31-
"purescript-spec": "^0.14.0"
28+
"purescript-aff": "^5.0.0",
29+
"purescript-console": "^4.1.0",
30+
"purescript-psci-support": "^4.0.0",
31+
"purescript-spec": "^3.0.0"
3232
},
3333
"resolutions": {
3434
"purescript-datetime": "interval"

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": "^0.11.0",
11-
"purescript-psa": "^0.5.0",
12-
"rimraf": "^2.6.1"
9+
"pulp": "^12.2.0",
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1312
}
1413
}

0 commit comments

Comments
 (0)