diff options
author | eric thul <thul.eric@gmail.com> | 2016-03-06 11:47:39 -0500 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2016-03-06 11:47:39 -0500 |
commit | 1c49c88ed60341341ab2b82aba738e8fc1179941 (patch) | |
tree | 7e9aa26412c4b907e6432a879dd4b5fd5634b687 /src/PursLoader/Plugin.purs | |
parent | 17f22f868b851e50081844562627a7a8a414dcaa (diff) | |
download | purs-loader-1c49c88ed60341341ab2b82aba738e8fc1179941.tar.gz purs-loader-1c49c88ed60341341ab2b82aba738e8fc1179941.tar.zst purs-loader-1c49c88ed60341341ab2b82aba738e8fc1179941.zip |
Writes PureScript output to stderr
Resolves #40
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 23f8600..c9f0133 100644 --- a/src/PursLoader/Plugin.purs +++ b/src/PursLoader/Plugin.purs | |||
@@ -18,7 +18,7 @@ import Data.Function (Fn4(), runFn4) | |||
18 | import Data.Maybe (Maybe(..)) | 18 | import Data.Maybe (Maybe(..)) |
19 | import Data.Nullable (Nullable()) | 19 | import Data.Nullable (Nullable()) |
20 | 20 | ||
21 | type Result = { srcMap :: ImmutableMap String String, ffiMap :: ImmutableMap String String, graph :: DependencyGraph } | 21 | type Result = { srcMap :: ImmutableMap String String, ffiMap :: ImmutableMap String String, graph :: DependencyGraph, output :: String } |
22 | 22 | ||
23 | type Compile eff = Nullable Error -> Result -> Eff eff Unit | 23 | type Compile eff = Nullable Error -> Result -> Eff eff Unit |
24 | 24 | ||