Skip to content

Commit

Permalink
Update ReadMe
Browse files Browse the repository at this point in the history
Updated readme for yarn add
Updated read me to include babel plugin steps
  • Loading branch information
Alex Risch authored and Alex Risch committed Jan 9, 2024
1 parent 66cc38c commit 9a9db08
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,25 @@ npx expo prebuild

For bare React Native projects, [install and configure the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.

### Add the package to your yarn dependencies
then add the required babel plugin
```bash
yarn add @babel/plugin-proposal-export-namespace-from -D
```
then add the plugin to your babel.config.js
```js
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
// ... other plugins
],
};
```

### Add the package to your dependencies

```bash
yarn i @xmtp/react-native-sdk
yarn add @xmtp/react-native-sdk
```

### Configure for iOS
Expand Down

0 comments on commit 9a9db08

Please sign in to comment.