mirror of
https://github.com/samuelthomas2774/nxapi.git
synced 2026-03-25 03:44:24 -05:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
import createDebug from 'debug';
|
|
|
|
//
|
|
// cli entrypoint for Rollup bundle
|
|
//
|
|
|
|
createDebug.log = console.warn.bind(console);
|
|
|
|
import('./cli.js').then(cli => cli.main.call(null));
|