0.43.0 (2026-06-16)
Features
This is a breaking change for libraries that use react-native-builder-bob/vite-config
They now must add the custom condition to their vite config. To preserve existing behavior, add conditions: ['source'] under resolve:
export default defineConfig((env) =>
mergeConfig(config(env), {
resolve: {
alias: {
[pack.name]: new URL('..', import.meta.url),
},
+ conditions: ['source'],
dedupe: Object.keys(pack.peerDependencies),
},
})
);This also drops react-native-builder-bob/metro-config. Migrate to react-native-monorepo-config) instead.