feat(dev): allow using @atproto packages from another directory

This commit is contained in:
Matthieu Sieben
2024-04-23 16:07:27 +02:00
parent cc9727a844
commit 010e3b138a
2 changed files with 61 additions and 0 deletions
+40
View File
@@ -1,7 +1,47 @@
// Learn more https://docs.expo.io/guides/customizing-metro
const path = require('path')
const {getDefaultConfig} = require('expo/metro-config')
const cfg = getDefaultConfig(__dirname)
if (process.env.ATPROTO_ROOT) {
const atprotoRoot = path.resolve(process.cwd(), process.env.ATPROTO_ROOT)
// Watch folders are used as roots for the virtual file system. Any file that
// needs to be resolved by the metro bundler must be within one of the watch
// folders. Since we will be resolving dependencies from the atproto packages,
// we need to add the atproto root to the watch folders so that the
cfg.watchFolders ||= []
cfg.watchFolders.push(atprotoRoot)
const resolveRequest = cfg.resolver.resolveRequest
cfg.resolver.resolveRequest = (context, moduleName, platform) => {
// Alias @atproto/* modules to the corresponding package in the atproto root
if (moduleName.startsWith('@atproto/')) {
const [, packageName] = moduleName.split('/', 2)
const packagePath = path.join(atprotoRoot, 'packages', packageName)
return context.resolveRequest(context, packagePath, platform)
}
// Polyfills are added by the build process and are not actual dependencies
// of the @atproto/* packages. Resolve those from here.
if (
moduleName.startsWith('@babel/') &&
context.originModulePath.startsWith(atprotoRoot)
) {
return {
type: 'sourceFile',
filePath: require.resolve(moduleName),
}
}
return (resolveRequest || context.resolveRequest)(
context,
moduleName,
platform,
)
}
}
cfg.resolver.sourceExts = process.env.RN_SRC_EXT
? process.env.RN_SRC_EXT.split(',').concat(cfg.resolver.sourceExts)
: cfg.resolver.sourceExts
+21
View File
@@ -1,3 +1,5 @@
const fs = require('fs')
const path = require('path')
const createExpoWebpackConfigAsync = require('@expo/webpack-config')
const {withAlias} = require('@expo/webpack-config/addons')
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin')
@@ -22,6 +24,25 @@ module.exports = async function (env, argv) {
'react-native$': 'react-native-web',
'react-native-webview': 'react-native-web-webview',
})
if (process.env.ATPROTO_ROOT) {
const atprotoRoot = path.resolve(process.cwd(), process.env.ATPROTO_ROOT)
const atprotoPackages = path.join(atprotoRoot, 'packages')
config = withAlias(
config,
Object.fromEntries(
fs
.readdirSync(atprotoPackages)
.map(pkgName => [pkgName, path.join(atprotoPackages, pkgName)])
.filter(([_, pkgPath]) =>
fs.existsSync(path.join(pkgPath, 'package.json')),
)
.map(([pkgName, pkgPath]) => [`@atproto/${pkgName}`, pkgPath]),
),
)
}
config.module.rules = [
...(config.module.rules || []),
reactNativeWebWebviewConfiguration,