From 0e69fefa637a319eaa23dc8b15cc277105bc1695 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 23 Apr 2024 10:25:36 +0200 Subject: [PATCH] Do not cache angular lib builds --- Earthfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Earthfile b/Earthfile index a6265aee..716fee92 100644 --- a/Earthfile +++ b/Earthfile @@ -217,9 +217,9 @@ angular-base: COPY assets/data ./assets IF [ "${configuration}" = "production" ] - RUN npm run build-libs + RUN --no-cache npm run build-libs ELSE - RUN npm run build-libs:dev + RUN --no-cache npm run build-libs:dev END # Explicitly cache here.