frame-cli 0.3.0

CLI for Frame — five intention-verbs over one application: frame new scaffolds it, frame run serves it, 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
16
17
//! Testable implementation of the `frame` command-line interface: five
//! intention-verbs — `new`, `run`, `test`, `check`, `doctor` — plus the
//! quiet `build` alias and the ops-facing `host` subcommand.

pub mod cli;
pub mod coherence;
pub mod commands;
pub mod doctor;
pub mod error;
pub mod preflight;
pub mod project;
pub mod scaffold;

pub use cli::{Cli, Command, TestScope};
pub use commands::execute;
pub use error::CliError;
pub use scaffold::{NewError, NewOptions, generate};