From 0ba41b16e4b4ab081e3c2851567c5e8e4c0a2c31 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 21 Dec 2024 05:14:23 -0500 Subject: [PATCH] fix(update): don't update apps-config npmdeps --- apps/update-sources/src/node-modules.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/update-sources/src/node-modules.ts b/apps/update-sources/src/node-modules.ts index 6f24ec2e..d969fbc3 100644 --- a/apps/update-sources/src/node-modules.ts +++ b/apps/update-sources/src/node-modules.ts @@ -61,7 +61,8 @@ export default async() => { for (const path of packages) { if ( path.name === 'package.json' && - !path.parentPath.includes('node_modules') + !path.parentPath.includes('node_modules') && + !path.parentPath.includes('apps/config') ) { await updatePackageJson(path.parentPath, updates);