eensy_dev_tools/project
Types
pub type Config {
Config(name: String, version: String, toml: Dict(String, Toml))
}
Constructors
-
Config(name: String, version: String, toml: Dict(String, Toml))
pub type Function {
Function(parameters: List(Type), return: Type)
}
Constructors
-
Function(parameters: List(Type), return: Type)
pub type Interface {
Interface(
name: String,
version: String,
modules: Dict(String, Module),
)
}
Constructors
-
Interface( name: String, version: String, modules: Dict(String, Module), )
pub type Module {
Module(
constants: Dict(String, Type),
functions: Dict(String, Function),
)
}
Constructors
-
Module( constants: Dict(String, Type), functions: Dict(String, Function), )
Functions
pub fn config() -> Result(Config, Error)
Read the project configuration in the gleam.toml
file.
pub fn flash_esp_32(
project_name: String,
port: String,
) -> Result(Nil, Error)
pub fn root() -> String
Finds the path leading to the project’s root folder. This recursively walks
up from the current directory until it finds a gleam.toml
.
pub fn run_local(project_name: String) -> Result(Nil, Error)
pub fn type_to_string(type_: Type) -> String