UNPKG
@nullpixel/ui
Version:
latest (3.0.1)
3.0.1
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
ui.nuxt.com
nuxt/ui
@nullpixel/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)