gex icon indicating copy to clipboard operation
gex copied to clipboard

The implementation of "clarify best practice for tool dependencies".

Results 9 gex issues
Sort by recently updated
recently updated
newest added

Go 1.17 introduced a new format for build tags, namely `//go:build`. This PR incorporates the change so that the build tag is written in both formats. This is how go...

It is now a standard practice to simply invoke `go run`, like `go run github.com/golang/mock/mockgen`, without using `go build`. At the same time, there is still a need to manage...

gex infers package name from its import path, but it goes wrong if major version suffix is involved. ```go //go:generate go build -v -o=./bin/v4 github.com/volatiletech/sqlboiler/v4 ``` This PR adds new...

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.4.0 to 0.5.6. Release notes Sourced from github.com/google/go-cmp's releases. v0.5.6 Reporter changes: (#258) Print as text if mostly text (#259) Cleanup edit groups after coalescing (#260) Avoid...

dependencies
go

Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.2.2 to 1.6.0. Release notes Sourced from github.com/spf13/afero's releases. go1.16 io/fs.FS support Add support for go1.16 io/fs.FS interface Fix incorrect WriteAt implementation for mem.File Fix setting gid...

dependencies
go

Bumps [github.com/bradleyjkemp/cupaloy/v2](https://github.com/bradleyjkemp/cupaloy) from 2.5.0 to 2.6.0. Commits a1e734c Add an option to disable usage of stringer methods. (#66) c5cccbb Fix workflow 1eefcad Fix golangci-lint action 0ea60f9 Create go.yml 132dad5 Bump...

dependencies
go

Not 100% sure if this is specific to gex, or go modules binary tools more generally. If a tool has a top-level main binary and uses versioned module support, the...

Now, `gex` can add packages which is not for command without any warnings. ```bash # developers can add packages which is not for command gex --add github.com/izumin5210/gex # what developers...