Skip to main content
Module

x/delgada/src/cli/index.ts

A web framework for building slim UIs.
Go to Latest
File
#!/usr/bin/env nodeimport { build } from './build.js';
async function main() { const command = process.argv[2]; switch (command) { case 'build': await build(); break; default: console.error('Invalid command.'); break; }}
main();