Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: mention installing cocoapods #879

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions website/src/4.x/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ To create a new React Native project with Re.Pack or adapt an existing one:
```bash
npx @callstack/repack-init
```
### [Optional] Install project CocoaPods dependencies
```bash
npx pod-install
```
</Steps>

{/* prettier-ignore-end */}
Expand Down Expand Up @@ -159,3 +163,13 @@ react {
bundleCommand = "webpack-bundle"
}
```

### 6. Install CocoaPods dependencies

For iOS development, you need to install CocoaPods dependencies. From the project root directory run:

```bash
npx pod-install
```

This will install all the necessary iOS dependencies for your project, including the Re.Pack native module.
14 changes: 14 additions & 0 deletions website/src/5.x/docs/getting-started/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ To create a new React Native project with Re.Pack or adapt an existing one:
```bash
npx @callstack/repack-init
```
### [Optional] Install project CocoaPods dependencies
```bash
npx pod-install
```
</Steps>

{/* prettier-ignore-end */}
Expand Down Expand Up @@ -159,3 +163,13 @@ react {
bundleCommand = "webpack-bundle"
}
```

### 6. Install CocoaPods dependencies

For iOS development, you need to install CocoaPods dependencies. From the project root directory run:

```bash
npx pod-install
```

This will install all the necessary iOS dependencies for your project, including the Re.Pack native module.
Loading