mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
import { defineCommand } from 'citty'
|
|
import component from './component.mjs'
|
|
import locale from './locale.mjs'
|
|
|
|
export default defineCommand({
|
|
meta: {
|
|
name: 'make',
|
|
description: 'Commands to create new Nuxt UI entities.'
|
|
},
|
|
subCommands: {
|
|
component,
|
|
locale
|
|
}
|
|
})
|