UNPKG
@interopio/cli
Version:
latest (4.2.0)
4.2.0
4.1.0
4.0.1
4.0.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.0.0
Interop.io CLI - a command line for creating Interop.io applications
interop.io
@interopio/cli
/
bin
/
dev.js
10 lines
(7 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
#!/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
()