@react-three/uikit
Version:
Build performant 3D user interfaces with react-three-fiber and yoga.
12 lines (11 loc) • 366 B
JavaScript
import { Command } from 'commander';
import { component } from './component/index.js';
process.on('SIGINT', () => process.exit(0));
process.on('SIGTERM', () => process.exit(0));
async function main() {
const program = new Command().name('uikit').description('cli for uikit');
program.addCommand(component);
program.parse();
}
main();