shulkerscript_cli/
lib.rs

1//! This crate is the cli app of the Shulkerscript language for creating Minecraft datapacks.
2//!
3//! # Installation
4//! ```bash
5//! cargo install shulkerscript-cli
6//! ```
7//!
8//! # Usage
9//! An extended description of the commands can be found in the readme or by running `shulkerscript --help`.
10//!
11//! ### Initialize a new project
12//! ```bash
13//! shulkerscript init [OPTIONS] [PATH]
14//! ```
15//!
16//! ### Build a project
17//! ```bash
18//! shulkerscript build [OPTIONS] [PATH]
19//! ```
20//!
21//! ### Clean the output directory
22//! ```bash
23//! shulkerscript clean [OPTIONS] [PATH]
24//! ```
25//!
26//! ### Watch for changes
27//! ```bash
28//! shulkerscript watch [OPTIONS] [PATH]
29//! ```
30
31pub mod cli;
32pub mod config;
33pub mod error;
34pub mod subcommands;
35pub mod terminal_output;
36pub mod util;