From e8c97c25a30514659327861b94cacc343e7a97b8 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Tue, 30 Sep 2025 11:08:20 +0100 Subject: [PATCH 1/3] chore: use config setting, other method is deprecated --- tests/pubspec.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/pubspec.yaml b/tests/pubspec.yaml index d1ed16db..82451def 100644 --- a/tests/pubspec.yaml +++ b/tests/pubspec.yaml @@ -39,4 +39,5 @@ dev_dependencies: flutter: uses-material-design: true - disable-swift-package-manager: true + config: + enable-swift-package-manager: false From bebc6087204fb7462ef33c827370fd0e5231236c Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Tue, 30 Sep 2025 11:15:21 +0100 Subject: [PATCH 2/3] chore: ignore build files for license headers --- melos.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/melos.yaml b/melos.yaml index 64967b7e..89dda691 100644 --- a/melos.yaml +++ b/melos.yaml @@ -140,12 +140,7 @@ scripts: --ignore "**/*.rb" \ --ignore "**/*.txt" \ --ignore "**/*.cmake" \ - --ignore "**/Runner/AppDelegate.swift" \ - --ignore "**/Runner/MainFlutterWindow.swift" \ - --ignore "**/Runner/Runner-Bridging-Header.h" \ - --ignore "**/Runner/AppDelegate.h" \ - --ignore "**/Runner/AppDelegate.m" \ - --ignore "**/Runner/main.m" \ + --ignore "**/Runner/**/*" \ --ignore "**/MainActivity.kt" \ --ignore "**/MainActivity.java" \ --ignore "**/FlutterMultiDexApplication.java" \ @@ -153,6 +148,10 @@ scripts: --ignore "**/Pods/**" \ --ignore "**/flutter/generated_plugin_registrant.*" \ --ignore "**/example/windows/**/*" \ + --ignore "**/Flutter/**/*" \ + --ignore "**/build/**/*" \ + --ignore "**/.dart_tool/**/*" \ + --ignore "**/flutter/plugins/**/*" \ . description: Add a license header to all necessary files. From b97f0c51c8a01e1d31af81b4f257a6be3a061dcb Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Tue, 30 Sep 2025 11:18:17 +0100 Subject: [PATCH 3/3] chore: ignore further files --- melos.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/melos.yaml b/melos.yaml index 89dda691..40037406 100644 --- a/melos.yaml +++ b/melos.yaml @@ -152,6 +152,8 @@ scripts: --ignore "**/build/**/*" \ --ignore "**/.dart_tool/**/*" \ --ignore "**/flutter/plugins/**/*" \ + --ignore "**/build.gradle" \ + --ignore "**/settings.gradle" \ . description: Add a license header to all necessary files.