Skip to content

Commit

Permalink
refactor: melos pod scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait committed Oct 14, 2024
1 parent da77a1b commit 18b5b63
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,24 @@ scripts:
description: Clean install the Pods

pod:ios:
exec: cd ios && rm -f Podfile.lock && pod install --repo-update
run: |
cd ios
rm -f Podfile.lock
pod install --repo-update
exec:
concurrency: 1
description: Run pod install on iOS.
packageFilters:
dirExists: [lib, ios]
fileExists: "ios/Podfile"

pod:macos:
exec: cd macos && rm -f Podfile.lock && pod install --repo-update
run: |
cd macos
rm -f Podfile.lock
pod install --repo-update
exec:
concurrency: 1
description: Run pod install on macOS.
packageFilters:
dirExists: [lib, macos]
Expand Down

0 comments on commit 18b5b63

Please sign in to comment.