Hi.
According to spec EAS Build supports the managed workflow. However builds with custom entry points (anything other than ./index.js
) fail with:
Error: The resource `/build/workingdir/build/index.js` was not found.
In particular I use "main": "src/App.tsx"
in package.json
, as described by registerRootComponent - Expo Documentation.
Also tried adding "entryPoint": "./src/App.tsx"
to app.json
with no luck.
Of course adding file ./index.js
with require('./src/App.tsx');
works. But I’d like to understand whether this is a known limitation of EAS build.
Thanks.