UNPKG

@constructor-io/constructorio-connect-cli

Version:

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

17 lines (13 loc) 499 B
#!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning void (async () => { const { config } = await import("dotenv"); config(); const oclif = await import("@oclif/core"); /** * ! Disclaimer * * With the development flag set to true, the CLI will print/output some UX elements differently from the run.js command. * Please use the run.js command for any layout or UX testing. */ await oclif.execute({ dir: __dirname, development: true }); })();