File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ node_js: stable
55env :
66 - PATH=$HOME/purescript:$PATH
77install :
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
910 - curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1011 - tar -xvf $HOME/purescript.tar.gz -C $HOME/
1112 - chmod a+x $HOME/purescript
Original file line number Diff line number Diff line change 1616 " package.json"
1717 ],
1818 "dependencies" : {
19- "purescript-prelude" : " ^4.0.0 " ,
20- "purescript-newtype" : " ^3.0.0 "
19+ "purescript-prelude" : " master " ,
20+ "purescript-newtype" : " master "
2121 },
2222 "devDependencies" : {
23- "purescript-effect" : " ^2.0.0 "
23+ "purescript-effect" : " master "
2424 }
2525}
Original file line number Diff line number Diff line change 77 },
88 "devDependencies" : {
99 "pulp" : " ^15.0.0" ,
10- "purescript-psa" : " ^0.6 .0" ,
10+ "purescript-psa" : " ^0.8 .0" ,
1111 "rimraf" : " ^2.6.2"
1212 }
1313}
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import Data.Ord (class Ord1)
1515-- | Alternate fx <> Alternate fy == Alternate (fx <|> fy)
1616-- | mempty :: Alternate _ == Alternate empty
1717-- | ```
18+ newtype Alternate :: forall k . (k -> Type ) -> k -> Type
1819newtype Alternate f a = Alternate (f a )
1920
2021derive instance newtypeAlternate :: Newtype (Alternate f a ) _
You can’t perform that action at this time.
0 commit comments