Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Commit ce310e0

Browse files
committed
📝 (GettingStarted) add peer dependencies installation instructions
1 parent bc11a7e commit ce310e0

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

docs/GettingStarted.mdx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ route: /getting-started
99

1010
React-gondola needs the following dependencies; if you do not have those installed, you need to install them with the correspondig command:
1111

12-
| Dependencie name | Yarn Installation command | NPM Installation command |
13-
| :--------------: | :-----------------------: | :----------------------: |
14-
| `rxjs` | `yarn add rxjs` | `npm i rxjs` |
12+
| Dependencie name | Yarn Installation command | NPM Installation command |
13+
| :-----------------------: | :--------------------------------: | :-----------------------------: |
14+
| `rxjs` | `yarn add rxjs` | `npm i rxjs` |
15+
| `react-native-reanimated` | `yarn add react-native-reanimated` | `npm i react-native-reanimated` |
16+
17+
Then, follow any post-installation instruction of `react-native-reanimated`. See [`react-native-reanimated` Installation Instructions](https://github.com/kmagiera/react-native-reanimated#installation).
1518

1619
Then, install React-Gondola with:
1720

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
],
1616
"peerDependencies": {
1717
"react": "*",
18-
"react-native": "*"
18+
"react-native": "*",
19+
"rxjs": "^6.5.2",
20+
"react-native-reanimated": "^1.1.0"
1921
},
2022
"scripts": {
2123
"post-install": "patch-package",

0 commit comments

Comments
 (0)