Module commands

Module commands 

Source
Expand description

Command implementations for the Joy CLI.

This module contains the implementation of all CLI commands:

  • build - Bundle JavaScript/TypeScript files
  • dev - Development server with hot reload
  • init - Project scaffolding
  • check - 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;

Modules§

build
Build command implementation.
check
Check command implementation.
dev
Development server command implementation.
init
Init command implementation.
utils
Shared utilities for command implementations.