flutter_shopping/melos.yaml
Freek van de Ven 0838b7b017
Feature/melos-variant (#8)
* feat: add flutter_shopping package

* feat: add flutter_shopping_cart package

* feat: add flutter_order_details package

* feat: add flutter_product_page package

* feat: remove example apps

* feat: update pubspecs

* feat: add github actions

* feat: export all the components through the flutter_shopping
2024-06-26 16:12:48 +02:00

40 lines
960 B
YAML

name: flutter_shopping
packages:
- packages/**
command:
version:
branch: master
scripts:
lint:all:
run: dart run melos run analyze && dart run melos run format-check
description: Run all static analysis checks.
get:
run: |
melos exec -c 1 -- "flutter pub get"
melos exec --scope="*example*" -c 1 -- "flutter pub get"
upgrade:
run: melos exec -c 1 -- "flutter pub upgrade"
create:
# run create in the example folder of flutter_chat_view
run: melos exec --scope="*example*" -c 1 -- "flutter create ."
analyze:
run: |
dart run melos exec -c 1 -- \
flutter analyze --fatal-infos
description: Run `flutter analyze` for all packages.
format:
run: dart run melos exec dart format .
description: Run `dart format` for all packages.
format-check:
run: dart run melos exec dart format . --set-exit-if-changed
description: Run `dart format` checks for all packages.