Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 20eecd6

Browse files
authoredMay 27, 2018
Merge pull request #8 from purescript-node/compiler/0.12
Compiler/0.12
2 parents 768ed66 + 9883dae commit 20eecd6

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed
 

‎.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ language: node_js
22
dist: trusty
33
sudo: required
44
node_js: 6
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
- bower install --production

‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"url": "git://github.com/purescript-node/purescript-node-url.git"
1313
},
1414
"dependencies": {
15-
"purescript-nullable": "^3.0.0"
15+
"purescript-nullable": "^4.0.0"
1616
}
1717
}

‎package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77
},
88
"devDependencies": {
99
"jscs": "^3.0.7",
10-
"jshint": "^2.9.4",
11-
"pulp": "^11.0.0",
12-
"purescript": "^0.11.1",
13-
"purescript-psa": "^0.5.0",
14-
"rimraf": "^2.6.1"
10+
"jshint": "^2.9.5",
11+
"pulp": "^12.2.0",
12+
"purescript-psa": "^0.6.0",
13+
"rimraf": "^2.6.2"
1514
}
1615
}

0 commit comments

Comments
 (0)
Please sign in to comment.