Skip to content

Releases: callstack/react-native-builder-bob

[email protected]

30 Apr 17:40
[email protected]
92fad2c
Compare
Choose a tag to compare

0.40.7 (2025-04-30)

Bug Fixes

[email protected]

30 Apr 17:40
[email protected]
92fad2c
Compare
Choose a tag to compare

0.49.9 (2025-04-30)

Important

  1. From this release, we no longer enable includesGeneratedCode by default. Make sure to read the official docs to understand the advantages and tradeoffs of this approach. If you want to do the same in your project, follow this section and revert these steps https://callstack.github.io/react-native-builder-bob/build#codegen

  2. The example app no longer uses babel-plugin-module-resolver and configures Metro to use the source code instead. This example app will now read package.json#exports and package.json#imports (from React Native 0.79 (Metro 0.82) onwards). We use a custom condition called source to point to the source code.

    For React Native 0.78 and lower, make sure to have a source field in package.json:

      "main": "./lib/module/index.js",
    + "source": "./src/index.tsx",

    For React Native 0.79 and higher, make sure to have a source condition under exports field in package.json:

      "exports": {
         ".": {
    +    "source": "./src/index.tsx",
          "types": "./lib/typescript/src/index.d.ts",
          "default": "./lib/module/index.js"
        },
        "./package.json": "./package.json"
      },

    Make sure that your example/metro.config.js uses react-native-builder-bob/metro-config:

  3. We have removed templates for legacy architecture and C++ template. Use an older version if you still need them: npx [email protected] awesome-library. We plan to add a reworked C++ template in the future that doesn't use Kotlin or Objective-C wrappers.

Bug Fixes

[email protected]

30 Apr 18:20
[email protected]
f72b5a3
Compare
Choose a tag to compare

0.49.10 (2025-04-30)

Bug Fixes

[email protected]

11 Apr 13:22
Compare
Choose a tag to compare

0.40.6 (2025-04-11)

Bug Fixes

[email protected]

11 Apr 13:22
Compare
Choose a tag to compare

0.49.8 (2025-04-11)

Bug Fixes

[email protected]

09 Apr 20:27
5c07d72
Compare
Choose a tag to compare

0.40.5 (2025-04-09)

Bug Fixes

[email protected]

09 Apr 20:27
5c07d72
Compare
Choose a tag to compare

0.49.7 (2025-04-09)

Bug Fixes

  • restrict react-native version to 0.78.2 (66dcc21) - by @

[email protected]

08 Apr 20:11
28747a2
Compare
Choose a tag to compare

0.40.4 (2025-04-08)

Bug Fixes

  • add types field back to support legacy moduleResolution (75f37e0) - by @

[email protected]

08 Apr 20:11
28747a2
Compare
Choose a tag to compare

0.6.4 (2025-04-08)

Bug Fixes

  • add types field back to support legacy moduleResolution (75f37e0) - by @

[email protected]

08 Apr 20:11
28747a2
Compare
Choose a tag to compare

0.49.6 (2025-04-08)

Bug Fixes

  • add types field back to support legacy moduleResolution (75f37e0) - by @