7 lines
113 B
JavaScript
7 lines
113 B
JavaScript
|
|
#!/usr/bin/env node
|
||
|
|
// * The entry point of the CLI
|
||
|
|
|
||
|
|
import { cli } from "../dist/index.js";
|
||
|
|
|
||
|
|
cli(process.argv);
|