leptos_forge_build_script/lib.rs
1//! Library with helpers to write a build scripts
2//!
3//! | Module | Description |
4//! |:-------|:------------|
5//! | [console] | Contains the code related to printing messages during the `cargo build`. Has support for multiline text and message tagging |
6//! | [resources] | Reliable static resource management across dependencies |
7//! | [tailwind] | Reliable tailwind integration for cargo projects |
8//!
9//! Detailed documentation and usage can be found at the module level
10
11#![doc(test(attr(deny(unused))))]
12#![doc(test(attr(deny(dead_code))))]
13#![deny(missing_docs)]
14#![deny(clippy::empty_docs)]
15#![deny(clippy::missing_docs_in_private_items)]
16#![deny(clippy::missing_safety_doc)]
17#![deny(clippy::missing_errors_doc)]
18#![deny(clippy::missing_fields_in_debug)]
19#![deny(clippy::undocumented_unsafe_blocks)]
20#![doc(test(attr(deny(unused))))]
21
22pub mod console;
23pub mod tailwind;
24pub mod resources;