diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Hakyll/Commands.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Hakyll/Commands.hs b/lib/Hakyll/Commands.hs index 6763fe7..667f07a 100644 --- a/lib/Hakyll/Commands.hs +++ b/lib/Hakyll/Commands.hs @@ -2,7 +2,8 @@ -- | Implementation of Hakyll commands: build, preview... {-# LANGUAGE CPP #-} module Hakyll.Commands - ( build + ( Check(..) + , build , check , clean , preview @@ -18,6 +19,7 @@ import Control.Concurrent import System.Exit (ExitCode, exitWith) -------------------------------------------------------------------------------- +import Hakyll.Check (Check(..)) import qualified Hakyll.Check as Check import Hakyll.Core.Configuration import Hakyll.Core.Logger (Logger) |