Files
karma/tools/github-release-notes/go.mod
Łukasz Mierzwa 0b724fdd86 fix(build): only install dev dependencies when needed
Right now both nodejs and Go dev dependencies (linters, test tools, etc.) are installed when building binaries.
This slows down everything, especially in CI.
Install nodejs dev deps only when needed by setting NODE_ENV=production during builds.
Install Go dev deps only when needed by splitting go.mod files per tool.
2020-06-25 14:52:22 +01:00

11 lines
291 B
Modula-2

module _
go 1.14
require (
github.com/buchanae/github-release-notes v0.0.0-20180827045457-200e1dacadbb
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.0.0 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
)