Skip to content

Commit

Permalink
chore: fix melos package filter
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvedder committed Jun 9, 2024
1 parent 79ffe65 commit a3299f2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ scripts:
"flutter test"
description: Run `flutter test` for a specific package.
packageFilters:
dir-exists: test
dirExists: test

generate:
run: |
Expand Down Expand Up @@ -125,18 +125,18 @@ scripts:
build:android:
run: |
melos exec -c 2 --fail-fast -- \
"flutter build apk --multidex"
"flutter build apk"
description: Build app for Android.
packageFilters:
dir-exists: android
dirExists: android

build:ios:
run: |
melos exec -c 2 --fail-fast -- \
"flutter build ipa --no-codesign"
description: Build app for iOS.
packageFilters:
dir-exists: ios
dirExists: ios

build:web:
run: |
Expand All @@ -145,7 +145,7 @@ scripts:
description: Build app for Web.
packageFilters:
scope: [studyu_app, studyu_designer_v2]
dir-exists: web
dirExists: web

build:web:app:
run: |
Expand All @@ -170,7 +170,7 @@ scripts:
description: Build web dev.
packageFilters:
scope: [studyu_app, studyu_designer_v2]
dir-exists: web
dirExists: web

build:web:app:dev:
run: |
Expand All @@ -179,7 +179,7 @@ scripts:
description: Build web app dev.
packageFilters:
scope: studyu_app
dir-exists: web
dirExists: web

build:web:designer_v2:dev:
run: |
Expand All @@ -188,4 +188,4 @@ scripts:
description: Build web designer_v2 dev.
packageFilters:
scope: studyu_designer_v2
dir-exists: web
dirExists: web

0 comments on commit a3299f2

Please sign in to comment.