17 lines
603 B
TypeScript
17 lines
603 B
TypeScript
import chalk from "chalk";
|
|
import { version } from "../package.json" with { type: "json" };
|
|
|
|
export const usage = `
|
|
${chalk.bold("muse")} - Compile and validate Playbills for Proscenium
|
|
${chalk.dim(`v${version}`)}
|
|
|
|
Usage:
|
|
muse [/path/to/binding.yaml] <options>
|
|
|
|
Options:
|
|
--check Only load and check the current binding and resources, but do not compile
|
|
--write Write the output to a file. If not specified, outputs to stdout
|
|
--outfile Specify the output file path [default: playbill.json]
|
|
--verbose, -v Verbose output
|
|
--help, -h Show this help message
|
|
`.trim();
|