UNPKG

@interopio/cli

Version:

Interop.io CLI - a command line for creating Interop.io applications

10 lines (7 loc) 275 B
#!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning // eslint-disable-next-line node/shebang async function main() { const { execute } = await import('@oclif/core') await execute({ development: true, dir: import.meta.url }) } await main()