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 6c009e6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Global rule:
* @xmtp/mobile
*.md @jhaaaa
*.md @fabriguespe
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 6c009e6

Please sign in to comment.