File tree Expand file tree Collapse file tree 2 files changed +41
-2
lines changed
Expand file tree Collapse file tree 2 files changed +41
-2
lines changed Original file line number Diff line number Diff line change 1+ ## Description
2+
3+ Please include a summary of the changes and the related issue. Provide context and explain the problem your pull request is solving.
4+
5+ Fixes #(issue) (If your PR is a 🐛 fix)
6+
7+ ## Type of change
8+
9+ Please delete options that are not relevant.
10+
11+ - [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
12+ - [ ] ✨ New feature (non-breaking change which adds functionality)
13+ - [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
14+ - [ ] 📝 Documentation update
15+
16+ ## Tested Environments
17+ - [ ] Linux (any distro)
18+ - [ ] Windows (10 or 11)
19+ - [ ] MacOS ARM64
20+ - [ ] MacOS Intel
21+
22+ ## Checklist
23+
24+ - [ ] I have used [ Gitmojis] ( https://gitmoji.dev/ ) for my commit messages.
25+ - [ ] My code follows the [ style guidelines] ( https://google.github.io/styleguide/go/ ) of the Go language.
26+ - [ ] I have performed a self-review of my own code
27+ - [ ] I have commented my code, particularly in hard-to-understand areas
28+ - [ ] I have made corresponding changes to the documentation (leave it unchecked if your changes doesn't need documentation update)
29+ - [ ] My changes generate no new warnings
30+ - [ ] I have added tests that prove my fix is effective or that my feature works (Ignore this for now 🙂)
31+ - [ ] New and existing unit tests pass locally with my changes
32+ - [ ] Any dependent changes have been merged and published in downstream modules
33+
34+ ## Screenshots (if applicable)
35+
36+ Please add any screenshots that show the changes you have made.
37+
38+ ## Additional context
39+
40+ Add any other context or screenshots about the pull request here.
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ go 1.23.4
55require (
66 github.com/charmbracelet/huh v0.6.0
77 github.com/charmbracelet/lipgloss v1.0.0
8+ github.com/charmbracelet/x/term v0.2.0
89 github.com/spf13/cobra v1.8.1
910)
1011
@@ -16,7 +17,6 @@ require (
1617 github.com/charmbracelet/bubbletea v1.1.0 // indirect
1718 github.com/charmbracelet/x/ansi v0.4.2 // indirect
1819 github.com/charmbracelet/x/exp/strings v0.0.0-20240722160745-212f7b056ed0 // indirect
19- github.com/charmbracelet/x/term v0.2.0 // indirect
2020 github.com/dustin/go-humanize v1.0.1 // indirect
2121 github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
2222 github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -32,6 +32,5 @@ require (
3232 github.com/spf13/pflag v1.0.5 // indirect
3333 golang.org/x/sync v0.8.0 // indirect
3434 golang.org/x/sys v0.28.0 // indirect
35- golang.org/x/term v0.27.0 // indirect
3635 golang.org/x/text v0.18.0 // indirect
3736)
You can’t perform that action at this time.
0 commit comments