From cb05fa2e8dd3f64ca6c7a08b569a44adab6a7a7e Mon Sep 17 00:00:00 2001
From: Paolo Brasolin <paolo.brasolin@gmail.com>
Date: Tue, 19 Apr 2022 12:57:37 +0200
Subject: [PATCH] fix: repair CI to work w/ parcel 2

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 303a3b5..671a597 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -122,7 +122,7 @@ prd-build-fe-node-job:
     APP_VERSION: ${CI_COMMIT_TAG}
     ROLLBAR_ACCESS_TOKEN: $POST_CLIENT_ITEM_ROLLBAR_ACCESS_TOKEN
   script:
-    - npm run build -- --out-dir dist/prd
+    - npm run build -- --dist-dir dist/prd
   artifacts:
     paths:
       - frontend/dist/prd
@@ -138,7 +138,7 @@ stg-build-fe-node-job:
     APP_VERSION: ${CI_COMMIT_SHORT_SHA}
     ROLLBAR_ACCESS_TOKEN: $POST_CLIENT_ITEM_ROLLBAR_ACCESS_TOKEN
   script:
-    - npm run build -- --out-dir dist/stg
+    - npm run build -- --dist-dir dist/stg
   artifacts:
     paths:
       - frontend/dist/stg
-- 
GitLab