Files
karma/tools.go
Łukasz Mierzwa d3ff3a4806 feat(build): use Go modules to install all cli tools
Using Go modules allows to pin versions in go.mod, so dependency management tools can track those.
Right now make targets will install latest version and travis.yml downloads binaries from github, moving to modules simplifies all of this.
tools.go is needed so that go build doesn't strip those dependencies from go.mod
2019-01-16 11:33:03 +00:00

14 lines
406 B
Go

// +build tools
# https://github.com/golang/go/issues/25922#issuecomment-412992431
# this file is to track dev dependencies for go modules that are needed
# to build this project, but are only CLI tools and don't get imported
package tools
import (
_ "github.com/elazarl/go-bindata-assetfs"
_ "github.com/terinjokes/bakelite"
_ "github.com/golangci/golangci-lint/pkg/commands"
)