Skip to content

Commit 486ac76

Browse files
committed
Move to gitpod-io namespace and update deps
1 parent f7fa9bc commit 486ac76

36 files changed

+402
-131
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ builds:
1010
- env:
1111
- CGO_ENABLED=0
1212
ldflags:
13-
- -s -w -X github.com/typefox/leeway/cmd.version={{.Version}}-{{.ShortCommit}}
13+
- -s -w -X github.com/gitpod-io/leeway/cmd.version={{.Version}}-{{.ShortCommit}}
1414
ignore:
1515
- goos: darwin
1616
goarch: 386

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"go.lintTool": "golangci-lint"
2+
"go.lintTool": "golangci-lint",
3+
"editor.fontFamily": "Courier New"
34
}

cmd/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
"path/filepath"
1212
"runtime"
1313

14+
"github.com/gitpod-io/leeway/pkg/leeway"
1415
"github.com/gookit/color"
1516
log "github.com/sirupsen/logrus"
1617
"github.com/spf13/cobra"
17-
"github.com/typefox/leeway/pkg/leeway"
1818
)
1919

2020
// buildCmd represents the build command

cmd/collect.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
log "github.com/sirupsen/logrus"
88
"github.com/spf13/cobra"
99

10-
"github.com/typefox/leeway/pkg/leeway"
11-
"github.com/typefox/leeway/pkg/prettyprint"
10+
"github.com/gitpod-io/leeway/pkg/leeway"
11+
"github.com/gitpod-io/leeway/pkg/prettyprint"
1212
)
1313

1414
type fileDescription struct {

cmd/describe-const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
log "github.com/sirupsen/logrus"
55
"github.com/spf13/cobra"
66

7-
"github.com/typefox/leeway/pkg/prettyprint"
7+
"github.com/gitpod-io/leeway/pkg/prettyprint"
88
)
99

1010
// describeConstCmd represents the describeTree command

cmd/describe-dependencies.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
log "github.com/sirupsen/logrus"
1212
"github.com/spf13/cobra"
1313

14-
"github.com/typefox/leeway/pkg/graphview"
15-
"github.com/typefox/leeway/pkg/leeway"
14+
"github.com/gitpod-io/leeway/pkg/graphview"
15+
"github.com/gitpod-io/leeway/pkg/leeway"
1616
)
1717

1818
// describeDependenciesCmd represents the describeDot command

cmd/describe-script.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
log "github.com/sirupsen/logrus"
55
"github.com/spf13/cobra"
66

7-
"github.com/typefox/leeway/pkg/prettyprint"
7+
"github.com/gitpod-io/leeway/pkg/prettyprint"
88
)
99

1010
// describeScriptCmd represents the describeTree command

cmd/describe-tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
log "github.com/sirupsen/logrus"
88
"github.com/spf13/cobra"
99

10-
"github.com/typefox/leeway/pkg/leeway"
10+
"github.com/gitpod-io/leeway/pkg/leeway"
1111
)
1212

1313
// describeTreeCmd represents the describeTree command

cmd/describe.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
log "github.com/sirupsen/logrus"
1010
"github.com/spf13/cobra"
1111

12-
"github.com/typefox/leeway/pkg/leeway"
13-
"github.com/typefox/leeway/pkg/prettyprint"
12+
"github.com/gitpod-io/leeway/pkg/leeway"
13+
"github.com/gitpod-io/leeway/pkg/prettyprint"
1414
)
1515

1616
// describeCmd represents the describe command

cmd/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
log "github.com/sirupsen/logrus"
1515
"github.com/spf13/cobra"
1616

17-
"github.com/typefox/leeway/pkg/leeway"
17+
"github.com/gitpod-io/leeway/pkg/leeway"
1818
)
1919

2020
// execCmd represents the version command

0 commit comments

Comments
 (0)