mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
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.
11 lines
291 B
Modula-2
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
|
|
)
|