@vuetify/cli 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -0
- package/dist/index.js +31347 -0
- package/dist/multipart-parser-BAp5_xBC.js +175 -0
- package/dist/node-DaMsCoIv.js +4003 -0
- package/dist/prompt-Bvac38n6.js +848 -0
- package/package.json +30 -0
- package/src/commands/docs.ts +23 -0
- package/src/commands/init.ts +30 -0
- package/src/commands/update.ts +40 -0
- package/src/commands/upgrade.ts +5 -0
- package/src/index.ts +26 -0
- package/tsdown.config.ts +7 -0
package/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# @vuetify/cli
|
|
2
|
+
|
|
3
|
+
CLI utilities and commands for Vuetify.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Global installation
|
|
8
|
+
|
|
9
|
+
You can install the CLI globally using `npm`, `pnpm`, `yarn`, or `bun`:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
# npm
|
|
13
|
+
npm install -g @vuetify/cli
|
|
14
|
+
|
|
15
|
+
# pnpm
|
|
16
|
+
pnpm add -g @vuetify/cli
|
|
17
|
+
|
|
18
|
+
# yarn
|
|
19
|
+
yarn global add @vuetify/cli
|
|
20
|
+
|
|
21
|
+
# bun
|
|
22
|
+
bun add -g @vuetify/cli
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
then you can run the CLI using `vuetify` in your terminal.
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
vuetify --help
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Local usage
|
|
32
|
+
|
|
33
|
+
Without installation, you can run the CLI using `npx`:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
# npm
|
|
37
|
+
npx @vuetify/cli
|
|
38
|
+
|
|
39
|
+
# pnpm
|
|
40
|
+
pnpm dlx @vuetify/cli
|
|
41
|
+
|
|
42
|
+
# yarn
|
|
43
|
+
yarn dlx @vuetify/cli
|
|
44
|
+
|
|
45
|
+
# bun
|
|
46
|
+
bunx @vuetify/cli
|
|
47
|
+
|
|
48
|
+
# deno
|
|
49
|
+
deno run -A npm:@vuetify/cli
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Status
|
|
53
|
+
|
|
54
|
+
Work in progress.
|
|
55
|
+
|
|
56
|
+
## Development
|
|
57
|
+
|
|
58
|
+
From the monorepo root:
|
|
59
|
+
|
|
60
|
+
- Install deps: `pnpm install`
|
|
61
|
+
- Build: `pnpm -F @vuetify/cli run build`
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
MIT
|