diff --git a/src/Stack/Types/Build/ConstructPlan.hs b/src/Stack/Types/Build/ConstructPlan.hs index 057cfe085e..213806d365 100644 --- a/src/Stack/Types/Build/ConstructPlan.hs +++ b/src/Stack/Types/Build/ConstructPlan.hs @@ -1,17 +1,19 @@ {-# LANGUAGE NoImplicitPrelude #-} +-- | A module providing types and related helper functions used in module +-- "Stack.Build.ConstructPlan". module Stack.Types.Build.ConstructPlan - ( ToolWarning (..) - , UnregisterState (..) - , AddDepRes (..) - , W (..) - , Ctx (..) - , M - , PackageInfo (..) + ( PackageInfo (..) , CombinedMap + , M + , W (..) + , AddDepRes (..) , toTask , adrVersion , adrHasLibrary + , Ctx (..) + , UnregisterState (..) + , ToolWarning (..) ) where import Generics.Deriving.Monoid ( mappenddefault, memptydefault ) diff --git a/src/Stack/Types/ComponentUtils.hs b/src/Stack/Types/ComponentUtils.hs index 180755cad5..35bdafd2aa 100644 --- a/src/Stack/Types/ComponentUtils.hs +++ b/src/Stack/Types/ComponentUtils.hs @@ -8,9 +8,8 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE ScopedTypeVariables #-} --- | A module providing the types that represent different sorts of components --- of a package (library and sub-library, foreign library, executable, test --- suite and benchmark). +-- | A module providing a type representing the name of an \'unqualified\' +-- component and related helper functions. module Stack.Types.ComponentUtils ( StackUnqualCompName (..) , fromCabalName