From 130192e74cc0c28bcb3d1ced758bc2fcdb91d6da Mon Sep 17 00:00:00 2001 From: Jakub Romanczyk Date: Sat, 18 Jan 2025 23:59:16 +0100 Subject: [PATCH] docs: mention installing cocoapods --- website/src/4.x/docs/getting-started.mdx | 14 ++++++++++++++ .../src/5.x/docs/getting-started/quick-start.mdx | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/website/src/4.x/docs/getting-started.mdx b/website/src/4.x/docs/getting-started.mdx index 48bcd5bf1..c12e4579f 100644 --- a/website/src/4.x/docs/getting-started.mdx +++ b/website/src/4.x/docs/getting-started.mdx @@ -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 + ``` {/* prettier-ignore-end */} @@ -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. diff --git a/website/src/5.x/docs/getting-started/quick-start.mdx b/website/src/5.x/docs/getting-started/quick-start.mdx index a2e70c2a4..e5ed75cf6 100644 --- a/website/src/5.x/docs/getting-started/quick-start.mdx +++ b/website/src/5.x/docs/getting-started/quick-start.mdx @@ -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 + ``` {/* prettier-ignore-end */} @@ -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.