Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge branch 'main' of github.com:bluesky-social/social-app into main

+17
+3
babel.config.js
··· 8 8 { 9 9 lazyImports: true, 10 10 native: { 11 + // We should be able to remove this after upgrading Expo 12 + // to a version that includes https://github.com/expo/expo/pull/24672. 13 + unstable_transformProfile: 'hermes-stable', 11 14 // Disable ESM -> CJS compilation because Metro takes care of it. 12 15 // However, we need it in Jest tests since those run without Metro. 13 16 disableImportExportTransform: !isTestEnv,
+14
patches/babel-preset-expo+9.5.2.patch
··· 1 + diff --git a/node_modules/babel-preset-expo/index.js b/node_modules/babel-preset-expo/index.js 2 + index 2099ee3..2b9e092 100644 3 + --- a/node_modules/babel-preset-expo/index.js 4 + +++ b/node_modules/babel-preset-expo/index.js 5 + @@ -105,7 +105,8 @@ module.exports = function (api, options = {}) { 6 + ], 7 + ], 8 + plugins: [ 9 + - getObjectRestSpreadPlugin(), 10 + + // - dan: This will be disabled anyway when we upgrade Expo, but let's do it now. 11 + + // getObjectRestSpreadPlugin(), 12 + ...extraPlugins, 13 + getAliasPlugin(), 14 + [require.resolve('@babel/plugin-proposal-decorators'), { legacy: true }],