frame-cli 0.4.0

CLI for Frame — six intention-verbs over one application: frame new scaffolds it, frame run serves it, frame dev hot-reloads it against the running node, frame test proves it (real browser included), frame check verifies it statically, frame doctor walks the prerequisites
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `frame dev` — the long-lived development loop (F-7b).
//!
//! Library-shaped, typed core under the thin CLI verb: watch the generated
//! project's component inputs by filesystem EVENTS, rebuild one coalesced
//! edit burst at a time, and hot-swap successful candidates against the
//! landed lifecycle while the node keeps serving last-known-good bytes.
//!
//! Ruling B is the line throughout: no timer in this module tree checks
//! for change. The only dev-loop timer is the semantic edit-quiet deadline
//! that starts already-known dirty work.

pub mod build;
pub mod debounce;
pub mod session;
pub mod watch;