Packages
gleam_tailwind
0.1.0
Gleam modules and functions for installing and invoking TailwindCSS
Retired package: Renamed
Current section
Files
Jump to
Current section
Files
src/tailwind/install.gleam
//// Runs the TailwindCSS install.
////
//// ⚠️ This module is to be ran directly as gleam module.
////
//// ## Example
//// $ gleam run -m tailwind/install
////
import tailwind
/// ⚠️ This function is to be ran directly as gleam module.
///
/// # Example
/// $ gleam run -m tailwind/install
///
/// If you wish to install tailwind programmatically use `tailwind.install()`.
pub fn main() {
tailwind.install()
}