File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
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-rc3
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 20
20
" package.json"
21
21
],
22
22
"dependencies" : {
23
- "purescript-control" : " ^4.0.0 " ,
24
- "purescript-foldable-traversable" : " ^4.0.0 " ,
25
- "purescript-invariant" : " ^4.0.0 " ,
26
- "purescript-prelude" : " ^4.0.0 "
23
+ "purescript-control" : " master " ,
24
+ "purescript-foldable-traversable" : " master " ,
25
+ "purescript-invariant" : " master " ,
26
+ "purescript-prelude" : " master "
27
27
}
28
28
}
Original file line number Diff line number Diff line change 7
7
"devDependencies" : {
8
8
"eslint" : " ^4.19.1" ,
9
9
"pulp" : " ^15.0.0" ,
10
- "purescript-psa" : " ^0.6 .0" ,
10
+ "purescript-psa" : " ^0.8 .0" ,
11
11
"rimraf" : " ^2.6.2"
12
12
}
13
13
}
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ import Data.TraversableWithIndex (class TraversableWithIndex)
29
29
-- | `Lazy` values can be evaluated by using the `force` function.
30
30
foreign import data Lazy :: Type -> Type
31
31
32
+ type role Lazy representational
33
+
32
34
-- | Defer a computation, creating a `Lazy` value.
33
35
foreign import defer :: forall a . (Unit -> a ) -> Lazy a
34
36
You can’t perform that action at this time.
0 commit comments