mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
16 lines
251 B
JavaScript
Executable File
16 lines
251 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { defineCommand, runMain } from 'citty'
|
|
import init from './commands/init.mjs'
|
|
|
|
const main = defineCommand({
|
|
meta: {
|
|
name: 'nuxt-ui',
|
|
description: 'Nuxt UI CLI'
|
|
},
|
|
subCommands: {
|
|
init
|
|
}
|
|
})
|
|
|
|
runMain(main)
|