UNPKG

@constructor-io/constructorio-connect-cli

Version:

CLI tool to enable users to interface with the Constructor Connect Ecosystem

11 lines (8 loc) 272 B
#!/usr/bin/env node void (async () => { const oclif = await import("@oclif/core"); const { config } = await import("dotenv"); const path = await import("path"); config({ path: path.join(process.cwd(), ".env") }); await oclif.execute({ dir: __dirname }); })();