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}`);