Files
karma/tools.go
Łukasz Mierzwa 8117000cb8 fix(backend): add a workaround for Go modules issue
go.mod keeps getting updated on build but go mod tidy reverts these changes

See https://github.com/golang/go/issues/31248#issuecomment-500019917
2019-06-07 21:15:55 +01:00

16 lines
519 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/go-bindata/go-bindata"
_ "github.com/go-logfmt/logfmt" // workaround for https://github.com/golang/go/issues/31248
_ "github.com/golangci/golangci-lint/pkg/commands"
_ "github.com/terinjokes/bakelite"
)