@shoperzz/cli 0.0.1 → 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/CHANGELOG.md +7 -0
- package/README.md +23 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @shoperzz/cli
|
|
2
2
|
|
|
3
|
+
## 0.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7135ca9: docs(monorepo): professionalize package READMEs and finalize unified release infrastructure
|
|
8
|
+
- fd02ee3: docs(monorepo): align package licenses with GPL-3.0 standards
|
|
9
|
+
|
|
3
10
|
## 0.0.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,13 +1,28 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @shoperzz/cli
|
|
2
2
|
|
|
3
|
-
The command-line
|
|
3
|
+
> The command-line interface for the Shoperzz ecosystem.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The Shoperzz CLI is the primary tool for scaffolding projects, managing plugins, and deploying the headless core. It streamlines the development workflow through a set of powerful commands.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- `shoperzz add plugin`: Automatically install and configure a plugin.
|
|
9
|
-
- `shoperzz generate`: Create boilerplate for developers.
|
|
7
|
+
## Commands
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
- `shoperzz init`: Initialize a new Shoperzz project.
|
|
10
|
+
- `shoperzz plugin add`: Install a plugin from the repository.
|
|
11
|
+
- `shoperzz build`: Prepare the monorepo for production.
|
|
12
|
+
- `shoperzz doctor`: Verify the health of the Shoperzz installation.
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @shoperzz/cli
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
shoperzz --help
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
GPL-3.0-or-later © Shoperzz
|