@vuetify/cli 0.0.12-beta.2 → 0.0.12-beta.3

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/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016-now Vuetify, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -1,15 +1,33 @@
1
- # @vuetify/cli
2
-
3
- CLI utilities and commands for Vuetify.
1
+ <div align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://cdn.vuetifyjs.com/docs/images/one/logos/vcli-logo-dark.svg">
4
+ <img alt="Vuetify CLI Logo" src="https://cdn.vuetifyjs.com/docs/images/one/logos/vcli-logo-light.svg" height="150">
5
+ </picture>
6
+ </div>
7
+
8
+ <p align="center">
9
+ <a href="https://www.npmjs.com/package/@vuetify/cli">
10
+ <img src="https://img.shields.io/npm/v/@vuetify/cli.svg" alt="Version">
11
+ </a>
12
+ <a href="https://www.npmjs.com/package/@vuetify/cli">
13
+ <img src="https://img.shields.io/npm/dt/@vuetify/cli.svg" alt="Downloads">
14
+ </a>
15
+ <br>
16
+ <a href="https://github.com/vuetifyjs/cli/blob/master/LICENSE">
17
+ <img src="https://img.shields.io/npm/l/@vuetify/cli.svg" alt="License">
18
+ </a>
19
+ <a href="https://community.vuetifyjs.com">
20
+ <img src="https://discordapp.com/api/guilds/340160225338195969/widget.png" alt="Chat">
21
+ </a>
22
+ </p>
4
23
 
5
- ## Usage
24
+ # @vuetify/cli
6
25
 
7
- ### Global installation
26
+ The official command line interface for Vuetify.
8
27
 
9
- You can install the CLI globally using `npm`, `pnpm`, `yarn`, or `bun`:
28
+ ## Installation
10
29
 
11
- ```sh
12
- # npm
30
+ ```bash
13
31
  npm install -g @vuetify/cli
14
32
 
15
33
  # pnpm
@@ -22,9 +40,9 @@ yarn global add @vuetify/cli
22
40
  bun add -g @vuetify/cli
23
41
  ```
24
42
 
25
- then you can run the CLI using `vuetify` in your terminal.
43
+ ## Usage
26
44
 
27
- ```sh
45
+ ```bash
28
46
  vuetify --help
29
47
  ```
30
48
 
@@ -49,17 +67,6 @@ bunx @vuetify/cli
49
67
  deno run -A npm:@vuetify/cli
50
68
  ```
51
69
 
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
70
  ## License
64
71
 
65
- MIT
72
+ [MIT License](./LICENSE)