From f1c3cac97b033f4b876bf9cf25b5b6280508f033 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Fri, 27 Mar 2026 12:14:28 +0100 Subject: [PATCH] - split build int ophases; --- buildspec.dev.yml | 2 +- buildspec.prod.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildspec.dev.yml b/buildspec.dev.yml index 1583bf7..6c62832 100644 --- a/buildspec.dev.yml +++ b/buildspec.dev.yml @@ -5,7 +5,7 @@ phases: runtime-versions: nodejs: 20 commands: - - npm ci + - npm install build: commands: - npm run build:dev diff --git a/buildspec.prod.yml b/buildspec.prod.yml index e66429f..2f0dfa8 100644 --- a/buildspec.prod.yml +++ b/buildspec.prod.yml @@ -5,7 +5,7 @@ phases: runtime-versions: nodejs: 20 commands: - - npm ci + - npm install build: commands: - npm run build:prod