@aristobyte-ui/cli 2.15.3 → 2.16.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/CHANGELOG.md +24 -0
- package/README.md +18 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @aristobyte-ui/cli
|
|
2
2
|
|
|
3
|
+
## 2.16.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Automated release from scripts/check-version.sh
|
|
8
|
+
|
|
9
|
+
## 2.16.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Automated release from scripts/check-version.sh
|
|
14
|
+
|
|
15
|
+
## 2.16.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Automated release from scripts/check-version.sh
|
|
20
|
+
|
|
21
|
+
## 2.16.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- Automated release from scripts/check-version.sh
|
|
26
|
+
|
|
3
27
|
## 2.15.3
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,11 +1,24 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @aristobyte-ui/cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://img.shields.io/npm/v/%40aristobyte-ui%2Fcli?style=for-the-badge" alt="NPM version" />
|
|
5
|
+
<img src="https://img.shields.io/npm/dm/%40aristobyte-ui%2Fcli?style=for-the-badge" alt="NPM downloads" />
|
|
6
|
+
<img src="https://img.shields.io/badge/Node-20.17.0+-339933?style=for-the-badge&logo=node.js&logoColor=white" alt="Node.js >=20.17.0" />
|
|
7
|
+
<img src="https://img.shields.io/badge/License-MIT-black?style=for-the-badge&logo=open-source-initiative&logoColor=white" alt="License" />
|
|
8
|
+
</p>
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
The official AristoByteUI CLI — initialize projects, install, upgrade, remove, and manage UI components.
|
|
6
11
|
|
|
7
|
-
|
|
12
|
+
## 📦 Installation
|
|
8
13
|
|
|
9
14
|
```bash
|
|
10
|
-
npm install -g aristobyte-cli
|
|
15
|
+
npm install -g @aristobyte-ui/cli
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 🚀 Usage
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
aristobyte-ui --help
|
|
22
|
+
aristobyte-ui list --all
|
|
23
|
+
aristobyte-ui init my-app
|
|
11
24
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aristobyte-ui/cli",
|
|
3
3
|
"description": "The official AristoByteUI CLI — initialize projects, install, upgrade, remove, and manage UI components seamlessly.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.16.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"author": "AristoByte <info@aristobyte.com>",
|