flutter_chat/melos.yaml
Freek van de Ven 2e79910e77 Merge pull request #11 from Iconica-Development/feat/icon-colors
feat: add color property for icon buttons in chat bottom
2023-10-11 10:11:24 +02:00

40 lines
925 B
YAML

name: flutter_community_chat
packages:
- packages/**
command:
version:
branch: master
scripts:
lint:all:
run: melos run analyze && melos run format
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_community_chat_view
run: melos exec --scope="*example*" -c 1 -- "flutter create ."
analyze:
run: |
melos exec -c 1 -- \
flutter analyze --fatal-infos
description: Run `flutter analyze` for all packages.
format:
run: melos exec dart format .
description: Run `dart format` for all packages.
format-check:
run: melos exec dart format . --set-exit-if-changed
description: Run `dart format` checks for all packages.