Vodopyanov Egor

Results 18 comments of Vodopyanov Egor

see https://github.com/headfire94/rspackify/pull/1

@iAmMuneeb not i use kinda ugly solution: ``` module.exports = ({ componentName, props, jsx, imports, interfaces, exports }, { tpl }) => { // Find or create the width and...

@ljharb 1. Use webstorm 2. create new js file and define variable and export it 'export default someVar'. 3. see eslint error that export is not used anywhere. Without PR...

Is there an example in this repo of regression test with dynamically added code to mirror for this case?

flow removal PR: https://github.com/facebook/react-native/pull/44002

For those who don't want to wait i solve it using: 1. babel alias `'@react-native/assets/registry': 'react-native-web/dist/cjs/modules/AssetRegistry',` so that mobile request AssetRegitry from web (code is the same) 2. `assetRegistryPath: 'react-native-web/dist/cjs/modules/AssetRegistry/index.js'`...

> Seems like [someone](https://medium.com/@sisongqolosi/how-to-speed-up-your-react-native-development-with-bun-88099cc28e92) had success using bun with [Expo](https://expo.dev/) As i understand this is only related to package management (installing node_modules) and initializing the project itself, a bit out...