Skip to content
Draft
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
9 changes: 2 additions & 7 deletions .github/actions/setup-monorepo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,11 @@ inputs:
runs:
using: composite
steps:
- name: 🏗 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ inputs.pnpm-version }}

- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: pnpm
cache: npm

- name: 🏗 Setup Expo
uses: expo/expo-github-action@v8
Expand All @@ -39,7 +34,7 @@ runs:
token: ${{ inputs.expo-token }}

- name: 📦 Install dependencies
run: pnpm install
run: npm install
shell: bash

- name: ♻️ Restore cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
expo-token: ${{ secrets.EXPO_TOKEN }}

- name: 👷 Build packages for mobile
run: pnpm run -w build:mobile
run: npm run build:mobile

# You can remove this step if you already configured this
# This project shouldn't be pre-configured with this ID, that's why its omitted
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
expo-token: ${{ secrets.EXPO_TOKEN }}

- name: 👷 Build packages
run: pnpm run -w build:mobile
run: npm run build:mobile

# You can remove this step if you already configured this
# This project shouldn't be pre-configured with this ID, that's why its omitted
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
uses: ./.github/actions/setup-monorepo

- name: ✅ Lint packages
run: pnpm run -w lint
run: npm run lint

- name: 👷 Build packages
run: pnpm run -w build
run: npm run build

- name: 🧪 Test packages
run: pnpm run -w test
run: npm run test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ web-build
node_modules
npm-debug.log
yarn-error.log
package-lock.json
pnpm-lock.yaml
pnpm-workspace.yaml

# Ruby
.direnv
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

6 changes: 3 additions & 3 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eas-build-post-install": "pnpm run -w build:mobile"
"eas-build-post-install": "cd ../.. && npm run build:mobile"
},
"dependencies": {
"@acme/feature-home": "workspace:*",
"@acme/feature-home": "1.0.0",
"@expo/metro-runtime": "^3.2.1",
"expo": "^51.0.17",
"expo-dev-client": "~4.0.19",
Expand All @@ -26,7 +26,7 @@
"react-native-web": "~0.19.11"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@acme/eslint-config": "1.0.0",
"@babel/core": "^7.24.5",
"@types/react": "~18.2.79",
"@types/react-dom": "~18.2.25",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"start": "next start"
},
"dependencies": {
"@acme/feature-home": "workspace:*",
"@acme/feature-home": "1.0.0",
"next": "^13.2.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@acme/eslint-config": "1.0.0",
"babel-plugin-react-native-web": "^0.19.6",
"eslint": "^8.34.0",
"eslint-config-next": "^13.2.1"
Expand Down
Loading