Skip to content

Commit aef26c8

Browse files
FCE-2844: Fix docs bare workflow tab prebuild (#233)
## Description - Wrap "Build native dependencies" step in Expo/Bare workflow tabs in React Native Quick Start tutorial - Expo users see `npx expo prebuild`, bare workflow users see `cd ios && pod install` - Applied to both `docs/` (next) and `versioned_docs/version-0.25.0/` ## Motivation and Context The `npx expo prebuild` command was shown unconditionally to all users, including bare workflow users who don't use Expo. This was confusing and incorrect for non-Expo setups.
1 parent 8596f21 commit aef26c8

3 files changed

Lines changed: 27 additions & 1 deletion

File tree

docs/tutorials/react-native-quick-start.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,23 @@ Ensure `Info.plist` contains camera and microphone usage description entries:
112112

113113
### Build native dependencies
114114

115+
<Tabs groupId="app-type">
116+
<TabItem value="expo" label="Expo">
117+
115118
```bash
116119
npx expo prebuild
117120
```
118121

122+
</TabItem>
123+
<TabItem value="rn" label="Bare workflow">
124+
125+
```bash
126+
cd ios && pod install
127+
```
128+
129+
</TabItem>
130+
</Tabs>
131+
119132
### Get your Fishjam ID
120133

121134
1. Log in to [Fishjam Dashboard](https://fishjam.io/app)

packages/web-client-sdk

Submodule web-client-sdk updated 42 files

versioned_docs/version-0.25.0/tutorials/react-native-quick-start.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,23 @@ Ensure `Info.plist` contains camera and microphone usage description entries:
112112

113113
### Build native dependencies
114114

115+
<Tabs groupId="app-type">
116+
<TabItem value="expo" label="Expo">
117+
115118
```bash
116119
npx expo prebuild
117120
```
118121

122+
</TabItem>
123+
<TabItem value="rn" label="Bare workflow">
124+
125+
```bash
126+
cd ios && pod install
127+
```
128+
129+
</TabItem>
130+
</Tabs>
131+
119132
### Get your Fishjam ID
120133

121134
1. Log in to [Fishjam Dashboard](https://fishjam.io/app)

0 commit comments

Comments
 (0)