Skip to content

Commit 7fd81b3

Browse files
Remove deprecated and redundant CLI commands
- Remove deprecated runtasks command (replaced by configure) - Remove redundant recreate command (equivalent to delete + start) - Remove dev-only commands: test, clipboard, envvars, connect, fu - Remove poorly documented commands: writeconnectionevent, updatemodel - Remove user-specified commands: configure-env-vars, import-ide-config, secret - Remove hello onboarding command and references - Fix duplicate start command registration This cleanup improves CLI organization and removes unused/experimental functionality. All core commands (start, stop, delete, reset, login, logout, ls, shell, open) remain intact. Co-Authored-By: Alec Fong <[email protected]>
1 parent 5b555fb commit 7fd81b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+11
-4897
lines changed

go.mod

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ require (
88
github.com/briandowns/spinner v1.16.0
99
github.com/fatih/color v1.13.0
1010
github.com/getsentry/sentry-go v0.14.0
11-
github.com/gin-gonic/gin v1.10.0
12-
github.com/go-git/go-git/v5 v5.13.2
1311
github.com/go-resty/resty/v2 v2.7.0
1412
github.com/golang-jwt/jwt v3.2.2+incompatible
1513
github.com/google/go-cmp v0.6.0
@@ -25,7 +23,6 @@ require (
2523
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
2624
github.com/pkg/errors v0.9.1
2725
github.com/robfig/cron/v3 v3.0.1
28-
github.com/samber/lo v1.33.0
2926
github.com/samber/mo v1.5.1
3027
github.com/schollz/progressbar/v3 v3.9.0
3128
github.com/sevlyar/go-daemon v0.1.5
@@ -44,62 +41,31 @@ require (
4441
)
4542

4643
require (
47-
dario.cat/mergo v1.0.0 // indirect
4844
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
49-
github.com/Microsoft/go-winio v0.6.1 // indirect
50-
github.com/ProtonMail/go-crypto v1.1.5 // indirect
5145
github.com/bahlo/generic-list-go v0.2.0 // indirect
5246
github.com/blang/semver/v4 v4.0.0 // indirect
53-
github.com/bytedance/sonic v1.11.6 // indirect
54-
github.com/bytedance/sonic/loader v0.1.1 // indirect
55-
github.com/cloudflare/circl v1.4.0 // indirect
56-
github.com/cloudwego/base64x v0.1.4 // indirect
57-
github.com/cloudwego/iasm v0.2.0 // indirect
58-
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
5947
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
60-
github.com/emirpasic/gods v1.18.1 // indirect
6148
github.com/fsnotify/fsnotify v1.5.4 // indirect
6249
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
63-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
64-
github.com/gin-contrib/sse v0.1.0 // indirect
65-
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
66-
github.com/go-git/go-billy/v5 v5.6.2 // indirect
67-
github.com/go-playground/locales v0.14.1 // indirect
68-
github.com/go-playground/universal-translator v0.18.1 // indirect
69-
github.com/go-playground/validator/v10 v10.20.0 // indirect
70-
github.com/goccy/go-json v0.10.2 // indirect
71-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7250
github.com/google/gnostic-models v0.6.8 // indirect
7351
github.com/hashicorp/hcl v1.0.0 // indirect
74-
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
75-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
76-
github.com/leodido/go-urn v1.4.0 // indirect
7752
github.com/magiconair/properties v1.8.6 // indirect
7853
github.com/mitchellh/mapstructure v1.5.0 // indirect
7954
github.com/moby/term v0.5.0 // indirect
8055
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
56+
github.com/onsi/gomega v1.34.1 // indirect
8157
github.com/pelletier/go-toml v1.9.5 // indirect
8258
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
83-
github.com/pjbgf/sha1cd v0.3.2 // indirect
8459
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
85-
github.com/skeema/knownhosts v1.3.0 // indirect
8660
github.com/spf13/cast v1.5.0 // indirect
8761
github.com/spf13/jwalterweatherman v1.1.0 // indirect
8862
github.com/subosito/gotenv v1.4.1 // indirect
8963
github.com/tidwall/match v1.1.1 // indirect
9064
github.com/tidwall/pretty v1.2.0 // indirect
91-
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
92-
github.com/ugorji/go/codec v1.2.12 // indirect
9365
github.com/x448/float16 v0.8.4 // indirect
94-
github.com/xanzy/ssh-agent v0.3.3 // indirect
95-
golang.org/x/arch v0.8.0 // indirect
96-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
97-
golang.org/x/mod v0.19.0 // indirect
9866
golang.org/x/sync v0.10.0 // indirect
99-
golang.org/x/tools v0.23.0 // indirect
10067
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
10168
gopkg.in/ini.v1 v1.67.0 // indirect
102-
gopkg.in/warnings.v0 v0.1.2 // indirect
10369
k8s.io/apimachinery v0.31.1 // indirect
10470
k8s.io/client-go v0.31.1 // indirect
10571
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect

go.sum

Lines changed: 0 additions & 90 deletions
Large diffs are not rendered by default.

pkg/cmd/background/background.go

Lines changed: 0 additions & 182 deletions
This file was deleted.

pkg/cmd/background/background_test.go

Lines changed: 0 additions & 1 deletion
This file was deleted.

pkg/cmd/clipboard/clipboard.go

Lines changed: 0 additions & 105 deletions
This file was deleted.

0 commit comments

Comments
 (0)