From 024a24be77a875e2669a5725c02654488c3d162e Mon Sep 17 00:00:00 2001 From: Jatin Bhuva <70341139+JatinBhuva@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:47:51 +0530 Subject: [PATCH 1/2] Fix yarn command for installing dependencies ### Summary Fixes incorrect Yarn installation command in the documentation. ### Changes - Replaced `yarn install ` with `yarn add ` - Ensured consistency with standard Yarn usage across docs ### Reason The current documentation incorrectly suggests using `yarn install `, which does not add new dependencies. The correct command is `yarn add `. ### Impact - Prevents confusion for developers using Yarn - Aligns documentation with actual Yarn behavior --- .../version-0.8.x/01-fundamentals/01-getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/versioned_docs/version-0.8.x/01-fundamentals/01-getting-started.md b/docs/versioned_docs/version-0.8.x/01-fundamentals/01-getting-started.md index faae6600f..faf1dbf81 100644 --- a/docs/versioned_docs/version-0.8.x/01-fundamentals/01-getting-started.md +++ b/docs/versioned_docs/version-0.8.x/01-fundamentals/01-getting-started.md @@ -68,9 +68,9 @@ Installation is pretty straightforward, use your package manager of choice to in ```bash yarn add react-native-executorch # For Expo projects - yarn install react-native-executorch-expo-resource-fetcher + yarn add react-native-executorch-expo-resource-fetcher # For bare React Native projects - yarn install react-native-executorch-bare-resource-fetcher + yarn add react-native-executorch-bare-resource-fetcher ``` From f3b37fb1c5028f018b49e5e9d2dd40693407c5bd Mon Sep 17 00:00:00 2001 From: Jatin Bhuva <70341139+JatinBhuva@users.noreply.github.com> Date: Wed, 15 Apr 2026 13:41:20 +0530 Subject: [PATCH 2/2] Change yarn install to yarn add for dependencies --- docs/docs/01-fundamentals/01-getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/01-fundamentals/01-getting-started.md b/docs/docs/01-fundamentals/01-getting-started.md index 8b8fdf528..790aa8ac3 100644 --- a/docs/docs/01-fundamentals/01-getting-started.md +++ b/docs/docs/01-fundamentals/01-getting-started.md @@ -68,9 +68,9 @@ Installation is pretty straightforward, use your package manager of choice to in ```bash yarn add react-native-executorch # For Expo projects - yarn install react-native-executorch-expo-resource-fetcher + yarn add react-native-executorch-expo-resource-fetcher # For bare React Native projects - yarn install react-native-executorch-bare-resource-fetcher + yarn add react-native-executorch-bare-resource-fetcher ```