hakyll-4.12.5.0: A static website compiler library

Safe HaskellNone
LanguageHaskell2010

Hakyll.Commands

Description

Implementation of Hakyll commands: build, preview...

Synopsis

Documentation

data Check Source #

Constructors

All 
InternalLinks 
Instances
Eq Check Source # 
Instance details

Defined in Hakyll.Check

Methods

(==) :: Check -> Check -> Bool #

(/=) :: Check -> Check -> Bool #

Ord Check Source # 
Instance details

Defined in Hakyll.Check

Methods

compare :: Check -> Check -> Ordering #

(<) :: Check -> Check -> Bool #

(<=) :: Check -> Check -> Bool #

(>) :: Check -> Check -> Bool #

(>=) :: Check -> Check -> Bool #

max :: Check -> Check -> Check #

min :: Check -> Check -> Check #

Show Check Source # 
Instance details

Defined in Hakyll.Check

Methods

showsPrec :: Int -> Check -> ShowS #

show :: Check -> String #

showList :: [Check] -> ShowS #

build :: Configuration -> Logger -> Rules a -> IO ExitCode Source #

Build the site

check :: Configuration -> Logger -> Check -> IO ExitCode Source #

Run the checker and exit

clean :: Configuration -> Logger -> IO () Source #

Remove the output directories

preview :: Configuration -> Logger -> Rules a -> Int -> IO () Source #

Preview the site

rebuild :: Configuration -> Logger -> Rules a -> IO ExitCode Source #

Rebuild the site

server :: Configuration -> Logger -> String -> Int -> IO () Source #

Start a server

deploy :: Configuration -> IO ExitCode Source #

Upload the site

watch :: Configuration -> Logger -> String -> Int -> Bool -> Rules a -> IO () Source #

Watch and recompile for changes