File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ node_js: stable
5
5
env :
6
6
- PATH=$HOME/purescript:$PATH
7
7
install :
8
- - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
8
+ # - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9
+ - TAG=v0.14.0-rc2
9
10
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10
11
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11
12
- chmod a+x $HOME/purescript
Original file line number Diff line number Diff line change 16
16
" package.json"
17
17
],
18
18
"dependencies" : {
19
- "purescript-effect" : " ^2.0.0 " ,
20
- "purescript-prelude" : " ^4.0.0 "
19
+ "purescript-effect" : " master " ,
20
+ "purescript-prelude" : " master "
21
21
}
22
22
}
Original file line number Diff line number Diff line change 3
3
exports . log = function ( s ) {
4
4
return function ( ) {
5
5
console . log ( s ) ;
6
- return { } ;
7
6
} ;
8
7
} ;
9
8
10
9
exports . warn = function ( s ) {
11
10
return function ( ) {
12
11
console . warn ( s ) ;
13
- return { } ;
14
12
} ;
15
13
} ;
16
14
17
15
exports . error = function ( s ) {
18
16
return function ( ) {
19
17
console . error ( s ) ;
20
- return { } ;
21
18
} ;
22
19
} ;
23
20
24
21
exports . info = function ( s ) {
25
22
return function ( ) {
26
23
console . info ( s ) ;
27
- return { } ;
28
24
} ;
29
25
} ;
30
26
31
27
exports . time = function ( s ) {
32
28
return function ( ) {
33
29
console . time ( s ) ;
34
- return { } ;
35
30
} ;
36
31
} ;
37
32
38
33
exports . timeLog = function ( s ) {
39
34
return function ( ) {
40
35
console . timeLog ( s ) ;
41
- return { } ;
42
36
} ;
43
37
} ;
44
38
45
39
exports . timeEnd = function ( s ) {
46
40
return function ( ) {
47
41
console . timeEnd ( s ) ;
48
- return { } ;
49
42
} ;
50
43
} ;
51
44
52
45
exports . clear = function ( ) {
53
46
console . clear ( ) ;
54
- return { } ;
55
47
} ;
You can’t perform that action at this time.
0 commit comments