shulkerscript-cli 0.1.0

Command line tool to compile Shulkerscript projects
Documentation
mod init;
pub use init::{init, InitArgs};

mod build;
pub use build::{build, BuildArgs};

mod clean;
pub use clean::{clean, CleanArgs};

#[cfg(feature = "lang-debug")]
mod lang_debug;
#[cfg(feature = "lang-debug")]
pub use lang_debug::{lang_debug, LangDebugArgs};

#[cfg(feature = "migrate")]
mod migrate;
#[cfg(feature = "migrate")]
pub use migrate::{migrate, MigrateArgs};

#[cfg(feature = "watch")]
mod watch;
#[cfg(feature = "watch")]
pub use watch::{watch, WatchArgs};