2021-01-14 17:33:05 +00:00
|
|
|
// +build deps
|
|
|
|
|
2021-01-11 23:08:01 +00:00
|
|
|
// Package deps depends on go modules in order to work around the fact that
|
|
|
|
// `go mod` subcommands will end up removing dependencies from the vendor directory
|
|
|
|
// if they are not referenced in any packages.
|
|
|
|
package deps
|
|
|
|
|
|
|
|
import (
|
2021-09-04 23:57:39 +00:00
|
|
|
_ "github.com/goplusjs/gopherjs" // UI
|
|
|
|
_ "github.com/goplusjs/gopherjs/js" // UI
|
|
|
|
_ "honnef.co/go/js/dom" // UI
|
|
|
|
_ "honnef.co/go/tools/cmd/staticcheck" // Lint
|
|
|
|
_ "myitcv.io/react/cmd/reactGen" // UI
|
2021-01-11 23:08:01 +00:00
|
|
|
)
|