Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 488 B view raw
1function readPackage(pkg, context) { 2 if ( 3 pkg.name === '@atproto/oauth-client-expo' && 4 pkg.version === '0.0.10' && 5 pkg.dependencies?.['react-native-mmkv'] === '^3.3.3' 6 ) { 7 pkg.dependencies['react-native-mmkv'] = 8 'npm:@bsky.app/react-native-mmkv@2.12.5' 9 context.log( 10 'patched @atproto/oauth-client-expo@0.0.10 react-native-mmkv -> npm:@bsky.app/react-native-mmkv@2.12.5', 11 ) 12 } 13 14 return pkg 15} 16 17module.exports = { 18 hooks: { 19 readPackage, 20 }, 21}