This repository was archived by the owner on Aug 4, 2023. It is now read-only.
File tree 4 files changed +16
-11
lines changed
4 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
dist : trusty
3
3
sudo : required
4
- node_js : 6
4
+ node_js : stable
5
+ env :
6
+ - PATH=$HOME/purescript:$PATH
5
7
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
6
12
- npm install -g bower
7
13
- npm install
8
14
- bower install --production
Original file line number Diff line number Diff line change 27
27
" example"
28
28
],
29
29
"dependencies" : {
30
- "purescript-aff" : " #compiler/0.12 " ,
31
- "purescript-either" : " #compiler/0.12 " ,
32
- "purescript-node-fs" : " #compiler/0.12 " ,
33
- "purescript-node-path" : " #compiler/0.12 "
30
+ "purescript-aff" : " ^5.0.0 " ,
31
+ "purescript-either" : " ^4.0.0 " ,
32
+ "purescript-node-fs" : " ^5.0.0 " ,
33
+ "purescript-node-path" : " ^3.0.0 "
34
34
},
35
35
"devDependencies" : {
36
- "purescript-console" : " #compiler/0.12 "
36
+ "purescript-console" : " ^4.1.0 "
37
37
}
38
38
}
Original file line number Diff line number Diff line change 6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "pulp" : " ^11.0.0" ,
10
- "purescript-psa" : " ^0.5.0" ,
11
- "purescript" : " ^0.11.1" ,
12
- "rimraf" : " ^2.5.4"
9
+ "pulp" : " ^12.2.0" ,
10
+ "purescript-psa" : " ^0.6.0" ,
11
+ "rimraf" : " ^2.6.2"
13
12
}
14
13
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Prelude
4
4
5
5
import Data.Array (filterA )
6
6
import Data.Maybe (maybe )
7
- import Data.String (charAt , singleton )
7
+ import Data.String.CodeUnits (charAt , singleton )
8
8
import Effect (Effect )
9
9
import Effect.Aff (launchAff_ )
10
10
import Effect.Class (liftEffect )
You can’t perform that action at this time.
0 commit comments