elearning/Frontend-Learner/node_modules/nitropack/dist/cli/index2.mjs
2026-01-13 10:48:02 +07:00

14 lines
334 B
JavaScript

import { defineCommand } from 'citty';
const index = defineCommand({
meta: {
name: "task",
description: "Operate in nitro tasks (experimental)"
},
subCommands: {
list: () => import('./list.mjs').then((r) => r.default),
run: () => import('./run.mjs').then((r) => r.default)
}
});
export { index as default };