From e46165cd1f0b4db47d9af644ab29617cc4427f96 Mon Sep 17 00:00:00 2001 From: Simek Date: Wed, 27 Aug 2025 20:10:39 +0200 Subject: [PATCH 1/2] add and update few package entries --- react-native-libraries.json | 45 ++++++++++++++++++++++++++++++++----- scripts/helpers.ts | 2 +- 2 files changed, 40 insertions(+), 7 deletions(-) diff --git a/react-native-libraries.json b/react-native-libraries.json index 012d42b88..ef2b0b90f 100644 --- a/react-native-libraries.json +++ b/react-native-libraries.json @@ -16826,7 +16826,9 @@ "https://github.com/10play/10TapAdvancedExample", "https://github.com/10play/10tap-web-example" ], - "images": ["https://raw.githubusercontent.com/10play/10tap-editor/refs/heads/main/website/static/img/cover.webp"], + "images": [ + "https://raw.githubusercontent.com/10play/10tap-editor/refs/heads/main/website/static/img/cover.webp" + ], "ios": true, "android": true, "web": true, @@ -16835,12 +16837,43 @@ }, { "githubUrl": "https://github.com/getsettalk/react-native-qr-kit", - "npmPkg": "react-native-qr-kit", - "examples": [ - "https://github.com/getsettalk/react-native-qr-kit/tree/main/Example" - ], - "ios": false, + "examples": ["https://github.com/getsettalk/react-native-qr-kit/tree/main/Example"], + "android": true, + "newArchitecture": true + }, + { + "githubUrl": "https://github.com/Shopify/checkout-sheet-kit-react-native/tree/main/modules/%40shopify/checkout-sheet-kit", + "npmPkg": "@shopify/checkout-sheet-kit", + "examples": ["https://github.com/Shopify/checkout-sheet-kit-react-native/tree/main/sample"], + "ios": true, + "android": true, + "newArchitecture": true + }, + { + "githubUrl": "https://github.com/software-mansion-labs/expo-live-activity", + "examples": ["https://github.com/software-mansion-labs/expo-live-activity/tree/main/example"], + "ios": true, + "newArchitecture": true + }, + { + "githubUrl": "https://github.com/software-mansion-labs/react-native-rag", + "examples": ["https://github.com/software-mansion-labs/react-native-rag/tree/main/example"], + "ios": true, "android": true, "newArchitecture": true + }, + { + "githubUrl": "https://github.com/xmartlabs/react-native-line", + "npmPkg": "@xmartlabs/react-native-line", + "examples": ["https://github.com/xmartlabs/react-native-line/tree/main/example"], + "ios": true, + "android": true, + "newArchitecture": true + }, + { + "githubUrl": "https://github.com/mybigday/llama.rn", + "examples": ["https://github.com/mybigday/llama.rn/tree/main/example"], + "ios": true, + "android": true } ] diff --git a/scripts/helpers.ts b/scripts/helpers.ts index 8697fe8d5..9ccb0b2c0 100644 --- a/scripts/helpers.ts +++ b/scripts/helpers.ts @@ -34,7 +34,7 @@ export const getUpdatedUrl = async url => { export const parseGitHubUrl = url => { const [, , , repoOwner, repoName, ...path] = url.split('/'); const isMonorepo = !!(path && path.length); - const packagePath = isMonorepo ? path.slice(2).join('/') : '.'; + const packagePath = isMonorepo ? path.slice(2).join('/').replace('%40', '@') : '.'; return { repoOwner, From 0828945d755f5a77870af5531b44d7fbc9236bef Mon Sep 17 00:00:00 2001 From: Simek Date: Wed, 27 Aug 2025 20:14:15 +0200 Subject: [PATCH 2/2] remove duplicate --- react-native-libraries.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/react-native-libraries.json b/react-native-libraries.json index ef2b0b90f..57f042e12 100644 --- a/react-native-libraries.json +++ b/react-native-libraries.json @@ -16862,14 +16862,6 @@ "android": true, "newArchitecture": true }, - { - "githubUrl": "https://github.com/xmartlabs/react-native-line", - "npmPkg": "@xmartlabs/react-native-line", - "examples": ["https://github.com/xmartlabs/react-native-line/tree/main/example"], - "ios": true, - "android": true, - "newArchitecture": true - }, { "githubUrl": "https://github.com/mybigday/llama.rn", "examples": ["https://github.com/mybigday/llama.rn/tree/main/example"],