convex
Version:
Client for the Convex Cloud
10 lines (8 loc) • 376 B
text/typescript
import { Command } from "@commander-js/extra-typings";
import { deploymentSelect } from "./deploymentSelect.js";
import { deploymentCreate } from "./deploymentCreate.js";
export const deployment = new Command("deployment")
.summary("Manage deployments")
.description("Manage deployments in your project.")
.addCommand(deploymentSelect)
.addCommand(deploymentCreate);