UNPKG

pact-toolbox

Version:

A tool to help you build, test and deploy your Pact smart contracts

24 lines (22 loc) 804 B
#!/usr/bin/env tsx import { defineCommand, runMain } from "citty"; //#region src/cli.ts const main = defineCommand({ meta: { name: "pact-toolbox", description: "Pact toolbox", version: "0.0.1" }, subCommands: { doctor: async () => (await import("./doctor-BG2jKXxO.js")).doctorCommand, init: async () => (await import("./init-C29OMETy.js")).initCommand, start: async () => (await import("./start-CjJvtcWl.js")).startCommand, prelude: async () => (await import("./prelude-Cv5gJgiU.js")).preludeCommand, run: async () => (await import("./run-IpfO2tYg.js")).runCommand, test: async () => (await import("./test-Dn4wI283.js")).testCommand, generate: async () => (await import("./generate-zG2VQnLD.js")).generateCommand } }); runMain(main); //#endregion //# sourceMappingURL=cli.js.map