feat(cli): add locale command (#2586)

This commit is contained in:
Alex
2024-11-09 20:14:29 +05:00
committed by GitHub
parent 4fbbb25f68
commit 824ba56291
5 changed files with 79 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env node
import { defineCommand, runMain } from 'citty'
import init from './commands/init.mjs'
import make from './commands/make/index.mjs'
const main = defineCommand({
meta: {
@@ -8,7 +8,7 @@ const main = defineCommand({
description: 'Nuxt UI CLI'
},
subCommands: {
init
make
}
})