@shopware-ag/shopware-cli 0.14.7 → 0.14.9
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 +85 -16
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,16 +1,85 @@
|
|
|
1
|
-
# Shopware CLI
|
|
2
|
-
|
|
3
|
-
[](https://cloudsmith.com)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
##
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
# Shopware CLI
|
|
2
|
+
|
|
3
|
+
[](https://cloudsmith.com)
|
|
4
|
+
|
|
5
|
+
Shopware CLI is a command line companion for common Shopware account, project, and extension workflows.
|
|
6
|
+
|
|
7
|
+
## Table of Contents
|
|
8
|
+
|
|
9
|
+
- [What it helps with](#what-it-helps-with)
|
|
10
|
+
- [Highlights](#highlights)
|
|
11
|
+
- [Install](#install)
|
|
12
|
+
- [Usage](#usage)
|
|
13
|
+
- [Repository Layout](#repository-layout)
|
|
14
|
+
- [Documentation](#documentation)
|
|
15
|
+
- [Contributing](#contributing)
|
|
16
|
+
- [License](#license)
|
|
17
|
+
|
|
18
|
+
## What it helps with
|
|
19
|
+
|
|
20
|
+
Use this CLI when you want to manage Shopware accounts, build and validate extensions, automate project maintenance, or run everyday developer tasks without leaving the terminal.
|
|
21
|
+
|
|
22
|
+
## Highlights
|
|
23
|
+
|
|
24
|
+
- Account-related commands under `shopware-cli account`
|
|
25
|
+
- Extension build, validation, formatting, changelog, and packaging helpers
|
|
26
|
+
- Project automation commands for create, config, cache, admin, and CI workflows
|
|
27
|
+
- Interactive terminal support, plus a non-interactive mode for scripts and CI
|
|
28
|
+
|
|
29
|
+
## Install
|
|
30
|
+
|
|
31
|
+
### From source with Go
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
go install github.com/shopware/shopware-cli@latest
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Build locally from this repository
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
git clone https://github.com/shopware/shopware-cli.git
|
|
41
|
+
cd shopware-cli
|
|
42
|
+
go build -o bin/shopware-cli .
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
Show the available commands:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
shopware-cli --help
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Common command groups:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
shopware-cli account --help
|
|
57
|
+
shopware-cli extension --help
|
|
58
|
+
shopware-cli project --help
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
If you need CI-friendly behavior, disable prompts:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
shopware-cli --no-interaction <command>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Repository Layout
|
|
68
|
+
|
|
69
|
+
- `cmd/`: Cobra command groups for account, extension, and project workflows
|
|
70
|
+
- `internal/`: implementation packages for APIs, build steps, validation, TUI, and utilities
|
|
71
|
+
- `.github/`: automation and workflow definitions
|
|
72
|
+
- `scripts/`: repository helper scripts
|
|
73
|
+
- `env-bridge/`: environment bridge helper entrypoint
|
|
74
|
+
|
|
75
|
+
## Documentation
|
|
76
|
+
|
|
77
|
+
- Official docs: <https://developer.shopware.com/docs/products/cli/>
|
|
78
|
+
|
|
79
|
+
## Contributing
|
|
80
|
+
|
|
81
|
+
Contributions are welcome. If you want to improve commands, docs, or developer workflows, open an issue or send a pull request.
|
|
82
|
+
|
|
83
|
+
## License
|
|
84
|
+
|
|
85
|
+
See [LICENSE](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopware-ag/shopware-cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.14.
|
|
4
|
+
"version": "0.14.9",
|
|
5
5
|
"description": "Shopware CLI helps Shopware developers manage extensions",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
@@ -32,50 +32,50 @@
|
|
|
32
32
|
"archives": {
|
|
33
33
|
"darwin-arm64": {
|
|
34
34
|
"name": "shopware-cli_Darwin_arm64.tar.gz",
|
|
35
|
-
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.
|
|
35
|
+
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.9/shopware-cli_Darwin_arm64.tar.gz",
|
|
36
36
|
"bins": [
|
|
37
37
|
"shopware-cli"
|
|
38
38
|
],
|
|
39
39
|
"format": "tar.gz",
|
|
40
40
|
"checksum": {
|
|
41
41
|
"algorithm": "sha256",
|
|
42
|
-
"digest": "
|
|
42
|
+
"digest": "ac2dbc8e9e47b3d4b2b10dda7e9c0fa65f374676cec97a22f7371ebd1917b6c5"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"darwin-x64": {
|
|
46
46
|
"name": "shopware-cli_Darwin_x86_64.tar.gz",
|
|
47
|
-
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.
|
|
47
|
+
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.9/shopware-cli_Darwin_x86_64.tar.gz",
|
|
48
48
|
"bins": [
|
|
49
49
|
"shopware-cli"
|
|
50
50
|
],
|
|
51
51
|
"format": "tar.gz",
|
|
52
52
|
"checksum": {
|
|
53
53
|
"algorithm": "sha256",
|
|
54
|
-
"digest": "
|
|
54
|
+
"digest": "cf144cbc761b4a64aaff240f99ffbdbb74b0c9ea1ed948ea0d513190bf75e988"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"linux-arm64": {
|
|
58
58
|
"name": "shopware-cli_Linux_arm64.tar.gz",
|
|
59
|
-
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.
|
|
59
|
+
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.9/shopware-cli_Linux_arm64.tar.gz",
|
|
60
60
|
"bins": [
|
|
61
61
|
"shopware-cli"
|
|
62
62
|
],
|
|
63
63
|
"format": "tar.gz",
|
|
64
64
|
"checksum": {
|
|
65
65
|
"algorithm": "sha256",
|
|
66
|
-
"digest": "
|
|
66
|
+
"digest": "60744cb3c3a98d761668817564c537ffda6a5742d3b35edaea9f6e582eedf152"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"linux-x64": {
|
|
70
70
|
"name": "shopware-cli_Linux_x86_64.tar.gz",
|
|
71
|
-
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.
|
|
71
|
+
"url": "https://github.com/shopware/shopware-cli/releases/download/0.14.9/shopware-cli_Linux_x86_64.tar.gz",
|
|
72
72
|
"bins": [
|
|
73
73
|
"shopware-cli"
|
|
74
74
|
],
|
|
75
75
|
"format": "tar.gz",
|
|
76
76
|
"checksum": {
|
|
77
77
|
"algorithm": "sha256",
|
|
78
|
-
"digest": "
|
|
78
|
+
"digest": "3b5a1d46d9771992d5ba66766266db7c258458686d4027c691e19a1147ff20fa"
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
}
|