File tree Expand file tree Collapse file tree 5 files changed +4
-14
lines changed Expand file tree Collapse file tree 5 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,7 @@ language: node_js
22sudo : false
33node_js :
44 - 0.12
5- env :
6- - PATH=$HOME/purescript:$PATH
75install :
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
126 - npm install bower gulp -g
137 - npm install && bower install
148script :
Original file line number Diff line number Diff line change 2525 "purescript-console" : " ^0.1.0" ,
2626 "purescript-exceptions" : " ^0.3.0" ,
2727 "purescript-functions" : " ^0.1.0" ,
28- "purescript-transformers" : " ^0.6.0 "
28+ "purescript-transformers" : " ^0.7.1 "
2929 }
3030}
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ class MonadAff e m where
1111``` purescript
1212instance monadAffAff :: MonadAff e (Aff e)
1313instance monadAffContT :: (Monad m, MonadAff eff m) => MonadAff eff (ContT r m)
14- instance monadAffError :: (Monad m, MonadAff eff m) => MonadAff eff (ErrorT e m)
1514instance monadAffExceptT :: (Monad m, MonadAff eff m) => MonadAff eff (ExceptT e m)
1615instance monadAffListT :: (Monad m, MonadAff eff m) => MonadAff eff (ListT m)
1716instance monadAffMaybe :: (Monad m, MonadAff eff m) => MonadAff eff (MaybeT m)
Original file line number Diff line number Diff line change 44 "gulp" : " ^3.8.6" ,
55 "gulp-jsvalidate" : " ^2.0.0" ,
66 "gulp-plumber" : " ^1.0.0" ,
7- "gulp-purescript" : " ^0.5.0" ,
8- "gulp-run" : " ^1.6.8"
7+ "gulp-purescript" : " ^0.6.0" ,
8+ "gulp-run" : " ^1.6.8" ,
9+ "purescript" : " ^0.7.4-rc.1"
910 }
1011}
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ module Control.Monad.Aff.Class where
44
55 import Control.Monad.Aff
66 import Control.Monad.Cont.Trans (ContT ())
7- import Control.Monad.Error.Trans (ErrorT ())
87 import Control.Monad.Except.Trans (ExceptT ())
98 import Control.Monad.List.Trans (ListT ())
109 import Control.Monad.Maybe.Trans (MaybeT ())
@@ -25,9 +24,6 @@ module Control.Monad.Aff.Class where
2524 instance monadAffContT :: (Monad m , MonadAff eff m ) => MonadAff eff (ContT r m ) where
2625 liftAff = lift <<< liftAff
2726
28- instance monadAffError :: (Monad m , MonadAff eff m ) => MonadAff eff (ErrorT e m ) where
29- liftAff = lift <<< liftAff
30-
3127 instance monadAffExceptT :: (Monad m , MonadAff eff m ) => MonadAff eff (ExceptT e m ) where
3228 liftAff = lift <<< liftAff
3329
You can’t perform that action at this time.
0 commit comments