From 2b8b6d9c6c8dc6b57e400ab6b98823074ec44898 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Mon, 1 Dec 2025 14:44:26 +0100 Subject: [PATCH] chore(deps): separate desktop platforms from core --- .github/renovate.json | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 80e84f45f8..40ad5303a5 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -57,13 +57,27 @@ { "groupName": "react-native", "matchPackageNames": [ - "@callstack/react-native-visionos", "@react-native/**", - "react-native", - "react-native-macos", - "react-native-windows" + "react-native" ], "allowedVersions": "^0.81.0" + }, + { + "groupName": "react-native-macos", + "matchPackageNames": [ + "@callstack/react-native-visionos", + "@react-native-macos/**", + "react-native-macos" + ], + "allowedVersions": "^0.78.0" + }, + { + "groupName": "react-native-windows", + "matchPackageNames": [ + "@react-native-windows/**", + "react-native-windows" + ], + "allowedVersions": "^0.79.0" } ], "postUpdateOptions": ["yarnDedupeHighest"],