Skip to content

Commit

Permalink
chore(deps): bump very_good_analysis from 5.1.0 to 6.0.0 in /packages…
Browse files Browse the repository at this point in the history
…/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]>
  • Loading branch information
3 people authored Aug 6, 2024
1 parent e6ae71a commit 67b6d7f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/dart_frog_cli/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include: package:very_good_analysis/analysis_options.5.1.0.yaml
include: package:very_good_analysis/analysis_options.6.0.0.yaml
analyzer:
exclude:
- lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,12 @@ class DevServerRunner {
}

var hasError = false;
process.stderr.listen((_) async {
process.stderr.listen((data) async {
hasError = true;

if (_isReloading) return;

final message = utf8.decode(_).trim();
final message = utf8.decode(data).trim();
if (message.isEmpty) return;

final isDartVMServiceAlreadyInUseError =
Expand Down Expand Up @@ -315,8 +315,8 @@ class DevServerRunner {
await _target.rollback();
});

process.stdout.listen((_) {
final message = utf8.decode(_).trim();
process.stdout.listen((data) {
final message = utf8.decode(data).trim();
final containsHotReload = message.contains('[hotreload]');
if (message.isNotEmpty) logger.info(message);
if (containsHotReload) {
Expand Down
2 changes: 1 addition & 1 deletion packages/dart_frog_cli/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dev_dependencies:
build_version: ^2.0.0
mocktail: ^1.0.0
test: ^1.19.2
very_good_analysis: ^5.1.0
very_good_analysis: ">=5.1.0 <7.0.0"

executables:
dart_frog:

0 comments on commit 67b6d7f

Please sign in to comment.