Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module contains the implementation of the dhall freeze
subcommand
Synopsis
- freeze :: OutputMode -> Transitivity -> NonEmpty Input -> Scope -> Intent -> Maybe CharacterSet -> Censor -> IO ()
- freezeWithManager :: IO Manager -> OutputMode -> Transitivity -> NonEmpty Input -> Scope -> Intent -> Maybe CharacterSet -> Censor -> IO ()
- freezeExpression :: FilePath -> Scope -> Intent -> Expr s Import -> IO (Expr s Import)
- freezeExpressionWithManager :: IO Manager -> FilePath -> Scope -> Intent -> Expr s Import -> IO (Expr s Import)
- freezeImport :: FilePath -> Import -> IO Import
- freezeImportWithManager :: IO Manager -> FilePath -> Import -> IO Import
- freezeRemoteImport :: FilePath -> Import -> IO Import
- freezeRemoteImportWithManager :: IO Manager -> FilePath -> Import -> IO Import
- data Scope
- data Intent
Freeze
freeze :: OutputMode -> Transitivity -> NonEmpty Input -> Scope -> Intent -> Maybe CharacterSet -> Censor -> IO () Source #
Implementation of the dhall freeze
subcommand
freezeWithManager :: IO Manager -> OutputMode -> Transitivity -> NonEmpty Input -> Scope -> Intent -> Maybe CharacterSet -> Censor -> IO () Source #
See freeze
.
freezeExpressionWithManager :: IO Manager -> FilePath -> Scope -> Intent -> Expr s Import -> IO (Expr s Import) Source #
See freezeExpression
.
Retrieve an Import
and update the hash to match the latest contents
freezeImportWithManager :: IO Manager -> FilePath -> Import -> IO Import Source #
See freezeImport
.
Freeze an import only if the import is a Remote
import
freezeRemoteImportWithManager :: IO Manager -> FilePath -> Import -> IO Import Source #
See freezeRemoteImport
.
Types
Specifies which imports to freeze
OnlyRemoteImports | Freeze only remote imports (i.e. URLs) |
AllImports | Freeze all imports (including paths and environment variables) |
Specifies why we are adding semantic integrity checks
Secure | Protect imports with an integrity check without a fallback so that import resolution fails if the import changes |
Cache | Protect imports with an integrity check and also add a fallback import import without an integrity check. This is useful if you only want to cache imports when possible but still gracefully degrade to resolving them if the semantic integrity check has changed. |