utpm 0.3.0

UTPM is a package manager for local and remote Typst packages. Quickly create and manage projects and templates on your system, and publish them directly to Typst Universe.
Documentation
1
2
3
4
5
6
7
8
use crate::args::get_args;

/// Returns if we want to execute a dry-run or not
///
/// Defaults to `false` if not explicitly set.
pub fn get_dry_run() -> bool {
    get_args().dry_run
}