From 45312473d1f54804e7494318a2b58c35487c0278 Mon Sep 17 00:00:00 2001 From: AN12345 Date: Thu, 24 Nov 2022 17:55:07 -0500 Subject: [PATCH] feat: add gen-class-models in melos scripts --- melos.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/melos.yaml b/melos.yaml index 580261a6..5d814ff0 100644 --- a/melos.yaml +++ b/melos.yaml @@ -47,7 +47,9 @@ scripts: run: melos run test:selective_unit_test --no-select description: Run all Flutter tests in this project. - gen_coverage: melos exec -- sh "\$MELOS_ROOT_PATH/combine_coverage.sh" && genhtml coverage/lcov.info -o coverage/html + gen-coverage: melos exec -- sh "\$MELOS_ROOT_PATH/combine_coverage.sh" && genhtml coverage/lcov.info -o coverage/html + + gen-class-models: melos exec --scope="*wyatt_*" -- dart pub global run dcdg -o models/class-models.puml # Additional cleanup lifecycle script, executed when `melos clean` is run. postclean: > -- 2.47.2