hexdocs_offline/config
This module holds the main Config record type.
It is used to identify the parameters of which gleam.toml
file
to use and where to put the resulting html files.
Types
pub type Config {
Config(
manifest_path: String,
gleam_path: String,
output_path: String,
include_dev: Bool,
new_tab: Bool,
ignore_deps: List(String),
hex_home: String,
)
}
Constructors
-
Config( manifest_path: String, gleam_path: String, output_path: String, include_dev: Bool, new_tab: Bool, ignore_deps: List(String), hex_home: String, )
Values
pub fn default_config() -> Config
pub fn default_gleam_path() -> String
pub fn default_hex_home() -> String
read more here: https://hexdocs.pm/hex/Mix.Tasks.Hex.Config.html
pub fn default_manifest_path() -> String
pub fn default_output_path() -> String