File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
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 21
21
" package.json"
22
22
],
23
23
"dependencies" : {
24
- "purescript-contravariant" : " ^4.0.0 " ,
25
- "purescript-foldable-traversable" : " ^4.0.0 " ,
26
- "purescript-invariant" : " ^4.0.0 " ,
27
- "purescript-newtype" : " ^3.0.0 " ,
28
- "purescript-prelude" : " ^4.0.0 "
24
+ "purescript-contravariant" : " master " ,
25
+ "purescript-foldable-traversable" : " master " ,
26
+ "purescript-invariant" : " master " ,
27
+ "purescript-newtype" : " master " ,
28
+ "purescript-prelude" : " master "
29
29
}
30
30
}
Original file line number Diff line number Diff line change 6
6
},
7
7
"devDependencies" : {
8
8
"pulp" : " ^15.0.0" ,
9
- "purescript-psa" : " ^0.6 .0" ,
9
+ "purescript-psa" : " ^0.8 .0" ,
10
10
"rimraf" : " ^2.6.2"
11
11
}
12
12
}
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import Data.TraversableWithIndex (class TraversableWithIndex)
23
23
-- | `Const` has some useful instances. For example, the `Applicative`
24
24
-- | instance allows us to collect results using a `Monoid` while
25
25
-- | ignoring return values.
26
+ newtype Const :: forall k . Type -> k -> Type
26
27
newtype Const a b = Const a
27
28
28
29
derive instance newtypeConst :: Newtype (Const a b ) _
You can’t perform that action at this time.
0 commit comments