From ad2679400b651b0eb32f609670f556ac79551aca Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Tue, 30 Jan 2024 14:08:02 -0800 Subject: [PATCH] add integration_test as a default top level dir for sources (#3645) --- build_runner_core/CHANGELOG.md | 3 ++- build_runner_core/lib/src/generate/options.dart | 1 + build_runner_core/pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build_runner_core/CHANGELOG.md b/build_runner_core/CHANGELOG.md index 32f735984..11a7812f8 100644 --- a/build_runner_core/CHANGELOG.md +++ b/build_runner_core/CHANGELOG.md @@ -1,6 +1,7 @@ -## 7.2.12-wip +## 7.3.0 - Bump the min sdk to 3.0.0. +- Add `integration_test` as a default top level directory for sources. ## 7.2.11 diff --git a/build_runner_core/lib/src/generate/options.dart b/build_runner_core/lib/src/generate/options.dart index 7be2a9377..88f360404 100644 --- a/build_runner_core/lib/src/generate/options.dart +++ b/build_runner_core/lib/src/generate/options.dart @@ -42,6 +42,7 @@ const List defaultRootPackageSources = [ 'example/**', 'lib/**', 'test/**', + 'integration_test/**', 'tool/**', 'web/**', 'node/**', diff --git a/build_runner_core/pubspec.yaml b/build_runner_core/pubspec.yaml index b2b997e25..55749b339 100644 --- a/build_runner_core/pubspec.yaml +++ b/build_runner_core/pubspec.yaml @@ -1,5 +1,5 @@ name: build_runner_core -version: 7.2.12-wip +version: 7.3.0 description: Core tools to organize the structure of a build and run Builders. repository: https://github.com/dart-lang/build/tree/master/build_runner_core