mirror of
https://github.com/samuelthomas2774/nxapi.git
synced 2026-03-22 02:14:10 -05:00
8 lines
161 B
JavaScript
Executable File
8 lines
161 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import createDebug from 'debug';
|
|
|
|
createDebug.log = console.warn.bind(console);
|
|
|
|
import('../dist/cli.js').then(cli => cli.main.call(null));
|