diff --git a/Makefile b/Makefile index 097b9a0..ed37914 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2023-11-06T13:30:11Z by kres 7206389-dirty. +# Generated on 2023-11-13T14:26:45Z by kres c281f8f-dirty. # common variables @@ -21,7 +21,7 @@ VTPROTOBUF_VERSION ?= 0.5.0 DEEPCOPY_VERSION ?= v0.5.5 GOLANGCILINT_VERSION ?= v1.55.2 GOFUMPT_VERSION ?= v0.5.0 -GO_VERSION ?= 1.21.3 +GO_VERSION ?= 1.21.4 GOIMPORTS_VERSION ?= v0.14.0 GO_BUILDFLAGS ?= GO_LDFLAGS ?= diff --git a/internal/project/js/toolchain.go b/internal/project/js/toolchain.go index 03587ff..eb9f533 100644 --- a/internal/project/js/toolchain.go +++ b/internal/project/js/toolchain.go @@ -147,7 +147,7 @@ func (toolchain *Toolchain) CompileDockerfile(output *dockerfile.Output) error { Step(step.Copy(filepath.Join(toolchain.sourceDir, "package-lock.json"), "./")). Step(step.Script("npm version ${VERSION}"). MountCache(toolchain.meta.NpmCachePath)). - Step(step.Script("npm install"). + Step(step.Script("npm ci"). MountCache(toolchain.meta.NpmCachePath)). Step(step.Copy("frontend/.eslintrc.yaml", "./")). Step(step.Copy(filepath.Join(toolchain.sourceDir, "babel.config.js"), "./")).