Skip to content
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: 0 additions & 11 deletions .cursor/mcp.json

This file was deleted.

40 changes: 0 additions & 40 deletions .cursorrules

This file was deleted.

11 changes: 0 additions & 11 deletions .eslintignore

This file was deleted.

101 changes: 0 additions & 101 deletions .eslintrc.cjs

This file was deleted.

18 changes: 11 additions & 7 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Cache yarn
uses: actions/cache@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
path: |
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
version: 10.33.0

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Setup EAS
uses: expo/expo-github-action@v8
Expand All @@ -35,10 +39,10 @@ jobs:
token: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: yarn install
run: pnpm install --frozen-lockfile

- name: Check
run: yarn validate:strict
run: pnpm validate:strict

- name: Publish update
run: eas update --auto
14 changes: 4 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ web-build/
# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*


.eslintcache

# native
ios
android
Expand Down Expand Up @@ -68,7 +65,7 @@ local.properties
#
node_modules/
npm-debug.log
yarn-error.log
pnpm-debug.log

# Bundle artifacts
*.jsbundle
Expand All @@ -95,9 +92,6 @@ coverage
.tamagui

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnpm-store

.env.local
Loading
Loading