File tree Expand file tree Collapse file tree 5 files changed +8
-11
lines changed Expand file tree Collapse file tree 5 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1- ## 2.10.3-wip
1+ ## 2.10.2
22
3+ - Bug fix: fix issue with webdev failing due to a modification during a build.
34- In "serve" and "watch" modes, retry failed compiles instead of exiting.
45
56## 2.10.1
Original file line number Diff line number Diff line change @@ -162,8 +162,8 @@ class BuildSeries {
162162
163163 // For modifications, confirm that the content actually changed.
164164 if (change.type == ChangeType .MODIFY ) {
165- _readerWriter. cache. invalidate ([id]);
166- final newDigest = await _readerWriter .digest (id);
165+ // Use `_buildPlan.readerWriter` which has no cache to do a real read.
166+ final newDigest = await _buildPlan.readerWriter .digest (id);
167167 if (node.digest != newDigest) {
168168 result.add (change);
169169 }
Original file line number Diff line number Diff line change 11name : build_runner
2- version : 2.10.3-wip
2+ version : 2.10.2
33description : A build system for Dart code generation and modular compilation.
44repository : https://github.com/dart-lang/build/tree/master/build_runner
55resolution : workspace
Original file line number Diff line number Diff line change 1- ## 3.5.3-wip
2-
3- - Use ` build_runner ` 2.10.3.
4-
5- ## 3.5.2-wip
1+ ## 3.5.2
62
73- Use ` build_runner ` 2.10.2.
84
Original file line number Diff line number Diff line change 11name : build_test
22description : Utilities for writing unit tests of Builders.
3- version : 3.5.3-wip
3+ version : 3.5.2
44repository : https://github.com/dart-lang/build/tree/master/build_test
55resolution : workspace
66
@@ -10,7 +10,7 @@ environment:
1010dependencies :
1111 build : ^4.0.0
1212 build_config : ^1.0.0
13- build_runner : ' 2.10.3-wip '
13+ build_runner : ' 2.10.2 '
1414 built_collection : ^5.1.1
1515 crypto : ^3.0.0
1616 glob : ^2.0.0
You can’t perform that action at this time.
0 commit comments