Skip to content

Commit

Permalink
last ones
Browse files Browse the repository at this point in the history
  • Loading branch information
tshedor committed Dec 16, 2024
1 parent 0cff173 commit b6079a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/brick_build/lib/src/builders/aggregate_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class AggregateBuilder implements Builder {
importRegex.allMatches(contents).map((m) => m[0]!).toSet();

@override
final buildExtensions = const {
r'$lib$': [outputFileName],
};
Map<String, List<String>> get buildExtensions => const {
r'$lib$': [outputFileName],
};
}
1 change: 1 addition & 0 deletions packages/brick_build/lib/src/builders/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export 'package:brick_build/src/annotation_super_generator.dart';
///
final brickLogger = Logger('Brick');

///
abstract class BaseBuilder<_ClassAnnotation> implements Builder {
///
Logger get logger => brickLogger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ abstract class ModelDictionaryGenerator {
/// so any methods that incorporate Type definitions should be listed here.
/// For example, importing a `SqliteProvider` or a `DatabaseExecutor`.
/// Consider adding analyzer ignores to disable 'unused_import' warnings.
final requiredImports = '';
String get requiredImports => '';

///
// ignore: constant_identifier_names
Expand Down

0 comments on commit b6079a6

Please sign in to comment.