From 5446d8c701766bbe194ad77206214ec344baa307 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Wed, 8 Jan 2025 14:25:11 +0000 Subject: [PATCH] [LOCAL] Fix prettier --- .../scripts/codegen/generate-artifacts-executor.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/react-native/scripts/codegen/generate-artifacts-executor.js b/packages/react-native/scripts/codegen/generate-artifacts-executor.js index 9c4448e0dcfdec..439f7e0dd77d9b 100644 --- a/packages/react-native/scripts/codegen/generate-artifacts-executor.js +++ b/packages/react-native/scripts/codegen/generate-artifacts-executor.js @@ -325,13 +325,13 @@ function findNotLinkedLibraries(projectRoot) { // We don't consider the case were `dependency-name.root` is equal to `null`, because that // means that the library is not linked to the app at all, and in that case the dependency // should be removed by the user. - dependency.platforms && Object.keys(dependency.platforms).forEach(platform => { - if (dependency.platforms[platform] == null) { - notLinkedPlatforms.push(platform); - } - }); + dependency.platforms && + Object.keys(dependency.platforms).forEach(platform => { + if (dependency.platforms[platform] == null) { + notLinkedPlatforms.push(platform); + } + }); notLinkedLibraries[name] = notLinkedPlatforms; - }); return notLinkedLibraries; }