From df9a2c62c08820bc8630259ac2923292b1e254dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Wed, 28 Jan 2026 14:25:00 +0100 Subject: [PATCH] docs: update bundlePath description --- .../api-reference/react-native-brownfield/objective-c.mdx | 5 +++-- .../docs/api-reference/react-native-brownfield/swift.mdx | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx b/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx index 074223e1..ce184d5d 100644 --- a/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx +++ b/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx @@ -30,10 +30,11 @@ A singleton that keeps an instance of `ReactNativeBrownfield` object. | Property | Type | Default | Description | | ------------------ | ---------- | --------------- | --------------------------------------------------------- | -| `entryFile` | `NSString` | `index` | Path to JavaScript root. | +| `entryFile` | `NSString` | `index` | Path to JavaScript entry file in development. | | `fallbackResource` | `NSString` | `nil` | Path to bundle fallback resource. | -| `bundlePath` | `NSString` | `main.jsbundle` | Path to bundle fallback resource. | +| `bundlePath` | `NSString` | `main.jsbundle` | Path to JavaScript bundle file. | | `bundle` | `NSBundle` | `Bundle.main` | Bundle instance to lookup the JavaScript bundle resource. | +| `bundleURLOverride` | `NSURL * _Nullable (^)(void)` | `nil` | Dynamic bundle URL provider called on every bundle load. When set, overrides default behavior. | --- diff --git a/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx b/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx index a787050d..f7cabf7d 100644 --- a/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx +++ b/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx @@ -30,9 +30,9 @@ ReactNativeBrownfield.shared | Property | Type | Default | Description | | ------------------- | ------------------ | --------------- | --------------------------------------------------------------------------------------------- | -| `entryFile` | `String` | `index` | Path to JavaScript root. | +| `entryFile` | `String` | `index` | Path to JavaScript entry file in development. | | `fallbackResource` | `String?` | `nil` | Path to bundle fallback resource. | -| `bundlePath` | `String` | `main.jsbundle` | Path to bundle fallback resource. | +| `bundlePath` | `String` | `main.jsbundle` | Path to JavaScript bundle file. | | `bundle` | `Bundle` | `Bundle.main` | Bundle instance to lookup the JavaScript bundle resource. | | `bundleURLOverride` | `(() -> URL?)?` | `nil` | Dynamic bundle URL provider called on every bundle load. When set, overrides default behavior. |