UNPKG
@eslamdevui/ui
Version:
beta (4.0.0-beta)
latest (4.0.0)
4.0.0
4.0.0-beta
3.3.4
3.3.3
3.3.2-beta.3
3.3.2-beta.2
3.3.2-beta.1
3.3.2-beta.0
3.3.1
3.3.0
3.2.2
3.2.1
3.2.0
3.2.0-beta.2
3.2.0-beta.1
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
ui.nuxt.com
nuxt/ui
@eslamdevui/ui
/
cli
/
index.mjs
16 lines
(13 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env node
import
{ defineCommand, runMain }
from
'citty'
import
make
from
'./commands/make/index.mjs'
const
main =
defineCommand
({
meta
: {
name
:
'nuxt-ui'
,
description
:
'Nuxt UI CLI'
},
subCommands
: { make } })
runMain
(main)