Skip to content

Commit 57e236d

Browse files
authored
add few new libraries, cleanup entries data (#1876)
1 parent 608259d commit 57e236d

File tree

2 files changed

+60
-9
lines changed

2 files changed

+60
-9
lines changed

react-native-libraries.json

Lines changed: 59 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6131,9 +6131,7 @@
61316131
},
61326132
{
61336133
"githubUrl": "https://github.com/hyochan/react-native-nitro-sound",
6134-
"examples": [
6135-
"https://github.com/hyochan/react-native-nitro-sound/tree/main/example"
6136-
],
6134+
"examples": ["https://github.com/hyochan/react-native-nitro-sound/tree/main/example"],
61376135
"ios": true,
61386136
"android": true
61396137
},
@@ -16928,21 +16926,27 @@
1692816926
},
1692916927
{
1693016928
"githubUrl": "https://github.com/VladyslavMartynov10/react-native-nitro-event-kit",
16931-
"examples": ["https://github.com/VladyslavMartynov10/react-native-nitro-event-kit/tree/main/example"],
16929+
"examples": [
16930+
"https://github.com/VladyslavMartynov10/react-native-nitro-event-kit/tree/main/example"
16931+
],
1693216932
"ios": true,
1693316933
"android": true,
1693416934
"newArchitecture": true
1693516935
},
1693616936
{
1693716937
"githubUrl": "https://github.com/ChristopherGabba/react-native-nitro-audio-manager",
16938-
"examples": ["https://github.com/ChristopherGabba/react-native-nitro-audio-manager/tree/main/example"],
16938+
"examples": [
16939+
"https://github.com/ChristopherGabba/react-native-nitro-audio-manager/tree/main/example"
16940+
],
1693916941
"ios": true,
1694016942
"android": true,
1694116943
"newArchitecture": true
1694216944
},
1694316945
{
1694416946
"githubUrl": "https://github.com/software-mansion-labs/react-native-enriched",
16945-
"examples": ["https://github.com/software-mansion-labs/react-native-enriched/tree/main/example"],
16947+
"examples": [
16948+
"https://github.com/software-mansion-labs/react-native-enriched/tree/main/example"
16949+
],
1694616950
"ios": true,
1694716951
"android": true,
1694816952
"newArchitecture": true
@@ -16958,17 +16962,64 @@
1695816962
"githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-glass-effect",
1695916963
"ios": true,
1696016964
"newArchitecture": true
16961-
},
16965+
},
1696216966
{
1696316967
"githubUrl": "https://github.com/crossplatformkorea/react-native-naver-login",
1696416968
"npmPkg": "@react-native-seoul/naver-login",
1696516969
"examples": [
1696616970
"https://github.com/crossplatformkorea/react-native-naver-login/tree/main/example",
1696716971
"https://github.com/crossplatformkorea/react-native-naver-login/tree/main/example-expo53"
1696816972
],
16969-
1697016973
"ios": true,
1697116974
"android": true,
1697216975
"newArchitecture": true
16976+
},
16977+
{
16978+
"githubUrl": "https://github.com/zoontek/react-native-navigation-bar",
16979+
"npmPkg": "@zoontek/react-native-navigation-bar",
16980+
"examples": ["https://github.com/zoontek/react-native-navigation-bar/tree/main/example"],
16981+
"android": true,
16982+
"newArchitecture": true
16983+
},
16984+
{
16985+
"githubUrl": "https://github.com/satya164/react-native-animated-observer",
16986+
"examples": ["https://github.com/satya164/react-native-animated-observer/tree/main/example"],
16987+
"ios": true,
16988+
"android": true,
16989+
"newArchitecture": true
16990+
},
16991+
{
16992+
"githubUrl": "https://github.com/google-pay/react-native-make-payment",
16993+
"npmPkg": "@google/react-native-make-payment",
16994+
"examples": ["https://github.com/google-pay/react-native-make-payment/tree/main/example"],
16995+
"android": true,
16996+
"newArchitecture": true
16997+
},
16998+
{
16999+
"githubUrl": "https://github.com/mtebele/react-native-tiktok-business-sdk",
17000+
"examples": ["https://github.com/mtebele/react-native-tiktok-business-sdk/tree/main/example"],
17001+
"ios": true,
17002+
"android": true
17003+
},
17004+
{
17005+
"githubUrl": "https://github.com/luisscruza/react-native-multi-resource-timeline",
17006+
"examples": [
17007+
"https://github.com/luisscruza/react-native-multi-resource-timeline/tree/main/example"
17008+
],
17009+
"ios": true,
17010+
"android": true,
17011+
"newArchitecture": true
17012+
},
17013+
{
17014+
"githubUrl": "https://github.com/clerk/javascript/tree/main/packages/expo-passkeys",
17015+
"npmPkg": "@clerk/expo-passkeys",
17016+
"ios": true,
17017+
"android": true,
17018+
"newArchitecture": true
17019+
},
17020+
{
17021+
"githubUrl": "https://github.com/tconns/react-native-nitro-keyevent",
17022+
"android": true,
17023+
"newArchitecture": true
1697317024
}
1697417025
]

scripts/validate-new-entries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const checkResults = await Promise.all(
5151
return false;
5252
}
5353

54-
if (entryWithGitHubData.github.isPrivate === false) {
54+
if (entryWithGitHubData.github.isPrivate === true) {
5555
console.error(
5656
`Extracted 'package.json' from ${entryWithGitHubData.githubUrl} is marked as private! You might be linking to the monorepo/workspace root, instead of wanted package directory.`
5757
);

0 commit comments

Comments
 (0)