cdd-cli 3.1.0 → 3.1.1
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.
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
**Describe the bug**
|
|
10
|
+
A clear and concise description of what the bug is.
|
|
11
|
+
|
|
12
|
+
**To Reproduce**
|
|
13
|
+
Steps to reproduce the behavior:
|
|
14
|
+
1. Go to '...'
|
|
15
|
+
2. Run '...'
|
|
16
|
+
3. See error
|
|
17
|
+
|
|
18
|
+
**Expected behavior**
|
|
19
|
+
A clear and concise description of what you expected to happen.
|
|
20
|
+
|
|
21
|
+
**Screenshots or logs**
|
|
22
|
+
If applicable, add screenshots or logs to help explain your problem.
|
|
23
|
+
|
|
24
|
+
**Environment (please complete the following information):**
|
|
25
|
+
- OS: (e.g. Ubuntu 22.04)
|
|
26
|
+
- Node version: (e.g. 18.x)
|
|
27
|
+
- cdd-cli version: (e.g. 3.1.0)
|
|
28
|
+
|
|
29
|
+
**Additional context**
|
|
30
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
**Is your feature request related to a problem? Please describe.**
|
|
10
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
11
|
+
|
|
12
|
+
**Describe the solution you'd like**
|
|
13
|
+
A clear and concise description of what you want to happen.
|
|
14
|
+
|
|
15
|
+
**Describe alternatives you've considered**
|
|
16
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
17
|
+
|
|
18
|
+
**Additional context**
|
|
19
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!-- Please replace the placeholders and remove this comment -->
|
|
2
|
+
## Summary
|
|
3
|
+
|
|
4
|
+
What does this PR change and why?
|
|
5
|
+
|
|
6
|
+
## Checklist
|
|
7
|
+
|
|
8
|
+
- [ ] I have read the contributing guidelines
|
|
9
|
+
- [ ] Tests added / updated
|
|
10
|
+
- [ ] Documentation updated
|
|
11
|
+
|
|
12
|
+
## Related issues
|
|
13
|
+
|
|
14
|
+
Closes: # (issue)
|
package/CHANGELOG.md
CHANGED
|
@@ -25,3 +25,10 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
25
25
|
## [Unreleased]
|
|
26
26
|
|
|
27
27
|
- Incoming fixes and smaller tests / docs updates
|
|
28
|
+
|
|
29
|
+
## [3.1.1] - 2025-10-16
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Minor docs typo fixes and README global install note added.
|
|
34
|
+
|
package/README.md
CHANGED
|
@@ -53,6 +53,22 @@ The dashboard auto-refreshes container list every few seconds.
|
|
|
53
53
|
|
|
54
54
|
---
|
|
55
55
|
|
|
56
|
+
## Install globally
|
|
57
|
+
|
|
58
|
+
To install the CLI globally so you can run `cdd` from any terminal, use:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npm install -g cdd-cli
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
After installing globally, run the CLI with:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
cdd
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
56
72
|
## Development
|
|
57
73
|
|
|
58
74
|
- Node.js >= 18 is recommended.
|