Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update sample project to expo 52 #783

Merged
merged 13 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,19 @@ yarn install
To run the example app on Android:

```sh
yarn example android
yarn android
```

To run the example app on iOS:

```sh
yarn example ios
yarn ios
```

To run the example app on web:

```sh
yarn web
```

Make sure your code passes TypeScript and Lint. Run the following to verify:
Expand Down Expand Up @@ -109,6 +115,7 @@ When you're sending a pull request:
- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.

### Repo visualization

![Visualization of this repo](./diagram.svg)

## Code of Conduct
Expand Down
36 changes: 36 additions & 0 deletions examples/react-native-marked-sample/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/
expo-env.d.ts

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo
21 changes: 0 additions & 21 deletions examples/react-native-marked-sample/android/.gitignore

This file was deleted.

55 changes: 0 additions & 55 deletions examples/react-native-marked-sample/android/app/BUCK

This file was deleted.

Loading
Loading