github callstack/react-native-builder-bob react-native-builder-bob@0.43.0

5 hours ago

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.

Don't miss a new react-native-builder-bob release

NewReleases is sending notifications on new releases.