ui-cli 0.1.2

A CLI to add components to your app.
1
2
3
4
5
6
7
8
9
10
11
12
13
/// 1. Init
pub const TAILWIND_CONFIG_JS: &str = "tailwind.config.js";
pub const COMPONENTS_JSON: &str = "components.json";
pub const STYLE_SLASH_TAILWIND_CSS: &str = "style/tailwind.css";
pub const SRC_LIB_RS: &str = "src/lib.rs";

/// 2. Components
pub const SRC_COMPONENTS_MOD_RS: &str = "src/components/mod.rs";
pub const SRC_COMPONENTS_UI_MOD_RS: &str = "src/components/ui/mod.rs";

// ADD
// pub const SRC_COMPONENTS: &str = "src/components";
// pub const MOD_DOT_RS: &str = "mod.rs";