Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/command/call/cmd.ts
6428 views
1
import { Command } from "cliffy/command/mod.ts";
2
import { engineCommand } from "./engine-cmd.ts";
3
import { buildTsExtensionCommand } from "./build-ts-extension/cmd.ts";
4
import { typstGatherCommand } from "./typst-gather/cmd.ts";
5
6
export const callCommand = new Command()
7
.name("call")
8
.description(
9
"Access functions of Quarto subsystems such as its rendering engines.",
10
)
11
.action(() => {
12
callCommand.showHelp();
13
Deno.exit(1);
14
})
15
.command("engine", engineCommand)
16
.command("build-ts-extension", buildTsExtensionCommand)
17
.command("typst-gather", typstGatherCommand);
18
19