Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/src/model/package_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class PubPackageBuilder implements PackageBuilder {
analysisOptions
..warning = false
..lint = false,
withFineDependencies: true,
);
return PubPackageBuilder._(
config,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
sdk: ^3.6.0

dependencies:
analyzer: ^8.4.0
analyzer: ^9.0.0
args: ^2.4.1
collection: ^1.17.0
crypto: ^3.0.3
Expand Down
1 change: 1 addition & 0 deletions test/mustachio/builder_test_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Future<LibraryElement> resolveGeneratedLibrary2(String libraryPath) async {
// handling it ourselves?
resourceProvider: PhysicalResourceProvider.INSTANCE,
sdkPath: sdkPath,
withFineDependencies: true,
);
var analysisContext = contextCollection.contextFor(d.sandbox);
final libraryResult =
Expand Down
1 change: 1 addition & 0 deletions tool/mustachio/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Future<void> build(
// handling it ourselves?
resourceProvider: PhysicalResourceProvider.INSTANCE,
sdkPath: sdkPath,
withFineDependencies: true,
);
var analysisContext = contextCollection.contextFor(root);
final libraryResult = await analysisContext.currentSession
Expand Down