Skip to content

Commit 2c9c44e

Browse files
committed
plugin and issue templates
1 parent c0eaad7 commit 2c9c44e

5 files changed

Lines changed: 76 additions & 8 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug Report
3+
about: Report a problem with b2c-cli
4+
labels: bug
5+
---
6+
7+
**Describe the bug**
8+
A brief description of what went wrong.
9+
10+
**Command and output**
11+
Please run the failing command with debug or trace logging and include the output:
12+
13+
```bash
14+
b2c <your-command> --debug
15+
# or for maximum verbosity
16+
b2c <your-command> --log-level trace
17+
```
18+
19+
<details>
20+
<summary>Debug output</summary>
21+
22+
```
23+
(paste output here)
24+
```
25+
26+
</details>
27+
28+
**Environment**
29+
- b2c-cli version: (`b2c --version`)
30+
- Node.js version: (`node --version`)
31+
- OS:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for b2c-cli
4+
labels: enhancement
5+
---
6+
7+
**What would you like?**
8+
A brief description of the feature.
9+
10+
**Why?**
11+
What problem does this solve or what use case does it enable?

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Summary
2+
3+
Brief description of what this PR does.
4+
5+
## Testing
6+
7+
How was this tested?
8+
9+
---
10+
11+
- [ ] Tests pass (`pnpm test`)
12+
- [ ] Code is formatted (`pnpm run format`)

packages/b2c-cli/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@oclif/plugin-plugins": "^5",
1414
"@oclif/plugin-not-found": "^3",
1515
"@oclif/plugin-autocomplete": "^3",
16+
"@oclif/plugin-version": "^2",
1617
"@salesforce/b2c-tooling": "workspace:*",
1718
"cliui": "^9.0.1"
1819
},
@@ -63,6 +64,7 @@
6364
"@oclif/plugin-help",
6465
"@oclif/plugin-plugins",
6566
"@oclif/plugin-not-found",
67+
"@oclif/plugin-version",
6668
"@oclif/plugin-autocomplete"
6769
],
6870
"topicSeparator": " ",

pnpm-lock.yaml

Lines changed: 20 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)