UNPKG

utquidem

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

13 lines (9 loc) 218 B
import { parseTasks } from './helper'; import { prebundle } from './prebundle'; async function run() { const parsedTasks = parseTasks(); for (const task of parsedTasks) { await prebundle(task); } } run();