diff options
author | eric <thul.eric@gmail.com> | 2016-03-12 14:56:34 -0500 |
---|---|---|
committer | eric <thul.eric@gmail.com> | 2016-03-12 14:56:34 -0500 |
commit | 7c6f8623b2448e9a371d6c7964493e365843004c (patch) | |
tree | 5079dcf661e96520e9b37562b47ab4d83bc7496a /src/PursLoader/Plugin.purs | |
parent | 55120f4502cb76e768f60654f3937db809df8ade (diff) | |
parent | cb2f4c886fd1057fbf0511b46cab3489123ced23 (diff) | |
download | purs-loader-7c6f8623b2448e9a371d6c7964493e365843004c.tar.gz purs-loader-7c6f8623b2448e9a371d6c7964493e365843004c.tar.zst purs-loader-7c6f8623b2448e9a371d6c7964493e365843004c.zip |
Merge pull request #42 from ethul/topic/stderr
Writes PureScript output to stderr
Diffstat (limited to 'src/PursLoader/Plugin.purs')
-rw-r--r-- | src/PursLoader/Plugin.purs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PursLoader/Plugin.purs b/src/PursLoader/Plugin.purs index c798c83..8bb53be 100644 --- a/src/PursLoader/Plugin.purs +++ b/src/PursLoader/Plugin.purs | |||
@@ -15,7 +15,7 @@ import Data.Either (Either(..)) | |||
15 | import Data.Function (Fn4(), runFn4) | 15 | import Data.Function (Fn4(), runFn4) |
16 | import Data.Nullable (Nullable()) | 16 | import Data.Nullable (Nullable()) |
17 | 17 | ||
18 | type Compile eff = Nullable Error -> DependencyGraph -> Eff eff Unit | 18 | type Compile eff = Nullable Error -> DependencyGraph -> String -> Eff eff Unit |
19 | 19 | ||
20 | type Context eff = { compile :: Compile eff -> Eff eff Unit, options :: Options } | 20 | type Context eff = { compile :: Compile eff -> Eff eff Unit, options :: Options } |
21 | 21 | ||