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.