Jakub Romańczyk
Jakub Romańczyk
@Nazehs @jefmoraes regarding the repository I did check it out and found two issues: 1. In `packages/mini-app/webpack.config.mjs` please change the `privateKeyPath` to `'./code-signing.pem'` to make it work properly - only...
@Nazehs @jefmoraes I've added a draft of `CodeSigningPlugin` docs, please take a look and let me know what you think, and whether it is clear enough now. Your feedback would...
Docs are now available here: https://re-pack.dev/4.x/docs/plugins/code-signing
The easiest way to validate if your configuration is right is to simply run the app with `verifyScriptSignature` set to `strict` in the ScriptManager and verify that it works.
- Added `eslint-disable` directive fro `@react-native/dev-middleware` because there is no main field declared there. ([description of the problem](https://github.com/import-js/eslint-plugin-import/issues/2132)) - Added TS path override for `@react-native/dev-middleware` because we use `moduleResolution: 'node'`...
@szymonrybczak should we use `@react-native/dev-middleware` as a peer dependency in our dev-server? I think it makes sense because it's always included with `react-native` as part of `@react-native/community-cli-plugin`, would love to...
> Using it as a peer dependency would make it auto-install as a dep when using npm, right? that might be the case, let's mark it as optional inside of...
Great works so far @RafikiTiki 🎉 Thanks for keeping the old debugger ❤️ As for the deps: - I would keep CLI deps as peer deps (since they are all...
Hey @dhayaljaswantgit for your first issue, please try changing the production path in the following manner: from: ```js const resolveURL = Federated.createURLResolver({ containers: { app1: 'http://localhost:9000/[name][ext]', app2: 'https://firebasestorage.googleapis.com/v0/b/jaswant-dhayal.appspot.com/o/index-android.bundle?alt=media&token=0f5ab5ee-4b55-424a-8b6b-cd5f13ac119c', }, });...
@szymonrybczak I gave it some thought and I think this will be a good way going forward, this will reduce the overhead when migrating from `metro` and avoid some silly...