mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
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
14 lines
406 B
Go
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"
|
|
)
|