Skip to content

Commit 8648d8e

Browse files
committed
fix(ci-cd): Fix CI:CD
1 parent d33256e commit 8648d8e

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.goreleaser.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88

99
version: 2
1010

11-
before:
12-
hooks:
13-
# You may remove this if you don't use go modules.
14-
- go mod tidy
15-
1611
project_name: config-lsp
1712
builds:
1813
- env:

server/go.mod

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ module config-lsp
33
go 1.22.5
44

55
require (
6+
github.com/antlr4-go/antlr/v4 v4.13.1
7+
github.com/emirpasic/gods v1.18.1
8+
github.com/google/go-cmp v0.6.0
9+
github.com/k0kubun/pp v3.0.1+incompatible
610
github.com/tliron/commonlog v0.2.17
711
github.com/tliron/glsp v0.2.2
12+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
813
)
914

1015
require (
11-
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
1216
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
13-
github.com/emirpasic/gods v1.18.1 // indirect
14-
github.com/google/go-cmp v0.6.0 // indirect
1517
github.com/gorilla/websocket v1.5.3 // indirect
1618
github.com/iancoleman/strcase v0.3.0 // indirect
17-
github.com/k0kubun/pp v3.0.1+incompatible // indirect
19+
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
1820
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
1921
github.com/mattn/go-colorable v0.1.13 // indirect
2022
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -28,7 +30,6 @@ require (
2830
github.com/sourcegraph/jsonrpc2 v0.2.0 // indirect
2931
github.com/tliron/kutil v0.3.24 // indirect
3032
golang.org/x/crypto v0.25.0 // indirect
31-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
3233
golang.org/x/sys v0.22.0 // indirect
3334
golang.org/x/term v0.22.0 // indirect
3435
)

server/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aN
1111
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
1212
github.com/iancoleman/strcase v0.3.0 h1:nTXanmYxhfFAMjZL34Ov6gkzEsSJZ5DbhxWjvSASxEI=
1313
github.com/iancoleman/strcase v0.3.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho=
14+
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM=
15+
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k=
1416
github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40=
1517
github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg=
1618
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=

0 commit comments

Comments
 (0)