Skip to content

Commit 8b6cfdb

Browse files
authored
allow build_web_compilers 2.x (#279)
1 parent 05b8e71 commit 8b6cfdb

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

webdev/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.0.0-alpha.3
2+
3+
- Lots of small daemon mode bug fixes.
4+
- Allow build_web_compilers 2.x.
5+
16
## 2.0.0-alpha.2
27

38
- Open up devtools with the full uri instead of just the port. This is required

webdev/lib/src/pubspec.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Future<void> checkPubspecLock(PubspecLock pubspecLock,
171171

172172
if (requireBuildWebCompilers) {
173173
issues.addAll(pubspecLock.checkPackage(
174-
'build_web_compilers', VersionConstraint.parse('>=1.2.0 <2.0.0')));
174+
'build_web_compilers', VersionConstraint.parse('>=1.2.0 <3.0.0')));
175175
}
176176

177177
if (buildRunnerIssues.isEmpty) {

webdev/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webdev/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: webdev
2-
version: 2.0.0-alpha.2
2+
version: 2.0.0-alpha.3
33
author: Dart Team <misc@dartlang.org>
44
homepage: https://github.com/dart-lang/webdev
55
description: >-

webdev/test/integration_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ name: sample
5757

5858
var invalidRanges = <String, List<String>>{
5959
'build_runner': ['0.8.9', '2.0.0'],
60-
'build_web_compilers': ['0.3.5', '2.0.0'],
60+
'build_web_compilers': ['0.3.5', '3.0.0'],
6161
'build_daemon': ['0.3.0', '0.4.1'],
6262
};
6363

@@ -144,7 +144,7 @@ name: sample
144144
break;
145145
case 'build_web_compilers':
146146
webCompilersVersion = version;
147-
supportedRange = '>=1.2.0 <2.0.0';
147+
supportedRange = '>=1.2.0 <3.0.0';
148148
break;
149149
case 'build_daemon':
150150
buildDaemonVersion = version;

0 commit comments

Comments
 (0)