From fc50da72d86567616a0d0d8b9c5bda22778b0294 Mon Sep 17 00:00:00 2001 From: Caden <132690522+marofke@users.noreply.github.com> Date: Thu, 23 Nov 2023 15:06:08 -0600 Subject: [PATCH] chore: use 'yarn run' for buildspec.yaml (#1143) Signed-off-by: Caden Marofke --- buildspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildspec.yaml b/buildspec.yaml index 1cddc817e..64bb09f29 100644 --- a/buildspec.yaml +++ b/buildspec.yaml @@ -10,10 +10,10 @@ phases: - yarn install --frozen-lockfile build: commands: - - yarn build + - yarn run build post_build: commands: - - "[ -f .BUILD_COMPLETED ] && yarn pack" + - "[ -f .BUILD_COMPLETED ] && yarn run pack" artifacts: files: - "**/*"