Expand description
Command implementations for the Joy CLI.
This module contains the implementation of all CLI commands:
build- Bundle JavaScript/TypeScript filesdev- Development server with hot reloadinit- Project scaffoldingcheck- Configuration validation
Each command is implemented in its own module and provides an execute
function that takes the parsed command arguments and returns a Result.
Re-exports§
pub use build::execute as build_execute;pub use check::execute as check_execute;pub use dev::execute as dev_execute;pub use init::execute as init_execute;