Skip to content

Commit 67b6d7f

Browse files
dependabot[bot]tomarraJochum van der Ploeg
authored
chore(deps): bump very_good_analysis from 5.1.0 to 6.0.0 in /packages/dart_frog_cli (#1419)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <[email protected]> Co-authored-by: Jochum van der Ploeg <[email protected]>
1 parent e6ae71a commit 67b6d7f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.5.1.0.yaml
1+
include: package:very_good_analysis/analysis_options.6.0.0.yaml
22
analyzer:
33
exclude:
44
- lib/src/version.dart

packages/dart_frog_cli/lib/src/dev_server_runner/dev_server_runner.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,12 @@ class DevServerRunner {
279279
}
280280

281281
var hasError = false;
282-
process.stderr.listen((_) async {
282+
process.stderr.listen((data) async {
283283
hasError = true;
284284

285285
if (_isReloading) return;
286286

287-
final message = utf8.decode(_).trim();
287+
final message = utf8.decode(data).trim();
288288
if (message.isEmpty) return;
289289

290290
final isDartVMServiceAlreadyInUseError =
@@ -315,8 +315,8 @@ class DevServerRunner {
315315
await _target.rollback();
316316
});
317317

318-
process.stdout.listen((_) {
319-
final message = utf8.decode(_).trim();
318+
process.stdout.listen((data) {
319+
final message = utf8.decode(data).trim();
320320
final containsHotReload = message.contains('[hotreload]');
321321
if (message.isNotEmpty) logger.info(message);
322322
if (containsHotReload) {

packages/dart_frog_cli/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dev_dependencies:
3434
build_version: ^2.0.0
3535
mocktail: ^1.0.0
3636
test: ^1.19.2
37-
very_good_analysis: ^5.1.0
37+
very_good_analysis: ">=5.1.0 <7.0.0"
3838

3939
executables:
4040
dart_frog:

0 commit comments

Comments
 (0)