UNPKG

vont

Version:

A full-stack framework combining Koa and React with file-based routing

13 lines 294 B
import { buildProject } from '../build/index.js'; /** * CLI 构建命令 */ export async function buildCommand() { await buildProject(); } // CLI 入口 buildCommand().catch((error) => { console.error('Build failed:', error); process.exit(1); }); //# sourceMappingURL=build.js.map