Files
ui/cli/commands/make/index.mjs
2024-11-09 16:14:29 +01:00

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
}
})