From 556dbe26c5ab8b3a3af57cde9643fac7939a9cf7 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 1 Feb 2025 14:27:32 -0500 Subject: [PATCH] fix(update): force update config package-lock --- apps/update-sources/src/node-modules.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/update-sources/src/node-modules.ts b/apps/update-sources/src/node-modules.ts index c6fde076..9101c5ea 100644 --- a/apps/update-sources/src/node-modules.ts +++ b/apps/update-sources/src/node-modules.ts @@ -85,6 +85,11 @@ export default async() => { `${parentPath}/default.nix`, ); } + + // Make sure we update the apps' config package-lock.json + if (parentPath.includes('apps/config')) { + npmRun(['i'], parentPath); + } } catch (e) { console.warn(`Could not write to ${path}`);