mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-26 09:50:33 +01:00
feat(cli): init command
This commit is contained in:
14
cli/index.mjs
Normal file
14
cli/index.mjs
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineCommand, runMain } from 'citty'
|
||||
import init from './commands/init.mjs'
|
||||
|
||||
const main = defineCommand({
|
||||
meta: {
|
||||
name: 'nuxtui',
|
||||
description: 'Nuxt UI CLI'
|
||||
},
|
||||
subCommands: {
|
||||
init
|
||||
}
|
||||
})
|
||||
|
||||
runMain(main)
|
||||
Reference in New Issue
Block a user