Skip to content

Commit

Permalink
Use the same resources for all Resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Mar 4, 2016
1 parent 46f99fb commit 0b7579d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/src/builder/build_step_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import 'exceptions.dart';
class BuildStepImpl implements BuildStep {
/// Single `_resolvers` instance for all [BuildStepImpl]s
static code_transformers.Resolvers _resolvers =
new code_transformers.Resolvers(code_transformers.dartSdkDirectory);
new code_transformers.Resolvers(code_transformers.dartSdkDirectory,
useSharedSources: true);

/// The primary input for this build step.
@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:
dependencies:
analyzer: ^0.27.1
barback: ^0.15.0
code_transformers: ^0.4.0
code_transformers: ^0.4.1
logging: ^0.11.2
glob: ^1.1.0
path: ^1.1.0
Expand Down

0 comments on commit 0b7579d

Please sign in to comment.