Skip to main content

frame_cli/dev/
mod.rs

1//! `frame dev` — the long-lived development loop (F-7b).
2//!
3//! Library-shaped, typed core under the thin CLI verb: watch the generated
4//! project's component inputs by filesystem EVENTS, rebuild one coalesced
5//! edit burst at a time, and hot-swap successful candidates against the
6//! landed lifecycle while the node keeps serving last-known-good bytes.
7//!
8//! Ruling B is the line throughout: no timer in this module tree checks
9//! for change. The only dev-loop timer is the semantic edit-quiet deadline
10//! that starts already-known dirty work.
11
12pub mod build;
13pub mod debounce;
14pub mod session;
15pub mod watch;