From ed8fcd7e5b548fd202280f62526ca22ed2a07750 Mon Sep 17 00:00:00 2001 From: Oliver Lindblad Date: Sun, 5 Jul 2026 23:15:59 +0200 Subject: [PATCH 1/2] Add react-native-quick-preview --- react-native-libraries.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/react-native-libraries.json b/react-native-libraries.json index cd2e2486a..870804426 100644 --- a/react-native-libraries.json +++ b/react-native-libraries.json @@ -23078,5 +23078,20 @@ "ios": true, "android": true, "dev": true + }, + { + "githubUrl": "https://github.com/Hashtagsmile/react-native-quick-preview", + "npmPkg": "react-native-quick-preview", + "examples": [ + "https://github.com/Hashtagsmile/react-native-quick-preview/tree/main/apps/expo-quick-preview-example" + ], + "images": [ + "https://raw.githubusercontent.com/Hashtagsmile/react-native-quick-preview/main/demo-feed.gif", + "https://raw.githubusercontent.com/Hashtagsmile/react-native-quick-preview/main/demo-shop.gif" + ], + "ios": true, + "android": true, + "expoGo": true, + "newArchitecture": true } ] From 18770f27b9adef58fbe27cbf0cb3439dc5f712e9 Mon Sep 17 00:00:00 2001 From: Oliver Lindblad Date: Mon, 6 Jul 2026 09:05:01 +0200 Subject: [PATCH 2/2] Point githubUrl at package subdirectory (monorepo) The repo root package.json is a private npm workspace root; the directory validator rejected it. Point githubUrl at packages/react-native-quick-preview so it reads the published package manifest, matching the convention used by other monorepo entries (e.g. react-navigation/packages/native). Co-Authored-By: Claude Fable 5 --- react-native-libraries.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-libraries.json b/react-native-libraries.json index 870804426..2385949a6 100644 --- a/react-native-libraries.json +++ b/react-native-libraries.json @@ -23080,7 +23080,7 @@ "dev": true }, { - "githubUrl": "https://github.com/Hashtagsmile/react-native-quick-preview", + "githubUrl": "https://github.com/Hashtagsmile/react-native-quick-preview/tree/main/packages/react-native-quick-preview", "npmPkg": "react-native-quick-preview", "examples": [ "https://github.com/Hashtagsmile/react-native-quick-preview/tree/main/apps/expo-quick-preview-example"