From 1601e1f416451b9f2372c18e5500662a64253345 Mon Sep 17 00:00:00 2001 From: Gregory Conrad Date: Mon, 18 Mar 2024 12:33:37 -0400 Subject: [PATCH] chore(deps): update melos.yaml for melos v5.1 --- .github/workflows/build.yml | 4 ++-- melos.yaml | 12 ------------ 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d483148..f46dfa49 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,9 +37,9 @@ jobs: # Dart/Flutter - name: Check Dart format - run: melos run check-format --no-select + run: melos format --set-exit-if-changed - name: Dart code analysis - run: melos run analyze --no-select + run: melos analyze - name: Run Dart tests run: melos run test diff --git a/melos.yaml b/melos.yaml index 02fa6962..1f13ad51 100644 --- a/melos.yaml +++ b/melos.yaml @@ -10,18 +10,6 @@ command: preCommit: bash scripts/version.sh scripts: - analyze: - exec: flutter analyze . - description: Analyze a specific package in this project. - - check-format: - exec: dart format --set-exit-if-changed . - description: Check the format of a specific package in this project. - - format: - exec: dart format . - description: Format a specific package in this project. - build: run: melos run build:apple && melos run build:android && melos run build:other description: Build all native libraries for the project.