diff options
author | eric thul <thul.eric@gmail.com> | 2016-03-13 10:00:17 -0400 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2016-03-13 10:00:17 -0400 |
commit | 0f0403a8359f316ece009442f2b3803e897cc9f1 (patch) | |
tree | 6e6d1f0b44750997e5358a2327be29d159da69b3 /src/PursLoader/Plugin.purs | |
parent | cfd5d2afba83a0082a3be638a05d1768ee73335e (diff) | |
download | purs-loader-0f0403a8359f316ece009442f2b3803e897cc9f1.tar.gz purs-loader-0f0403a8359f316ece009442f2b3803e897cc9f1.tar.zst purs-loader-0f0403a8359f316ece009442f2b3803e897cc9f1.zip |
Defers to the plugin for writing PureScript output
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 8bb53be..c798c83 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 -> String -> Eff eff Unit | 18 | type Compile eff = Nullable Error -> DependencyGraph -> 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 | ||