Skip to content

Commit 26c831e

Browse files
chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 in /bricks/dart_frog_new/hooks (#1650)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <tarra3@gmail.com>
1 parent 26a05a6 commit 26c831e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bricks/dart_frog_new/hooks/analysis_options.yaml

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.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml
22

33
linter:
44
rules:

bricks/dart_frog_new/hooks/lib/post_gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Future<void> postGen(
2828
io.File(
2929
path.join(currentDirectory.path, filename),
3030
).renameSync('$containingDirectoryPath/$filename');
31-
} catch (error) {
31+
} on Exception catch (error) {
3232
context.logger.err('$error');
3333
return exit(1);
3434
}

bricks/dart_frog_new/hooks/lib/pre_gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void preGen(
2929
final RouteConfiguration routeConfiguration;
3030
try {
3131
routeConfiguration = buildConfiguration(projectDirectory);
32-
} catch (error) {
32+
} on Exception catch (error) {
3333
context.logger.err('$error');
3434
return exit(1);
3535
}

bricks/dart_frog_new/hooks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ dependencies:
1212
dev_dependencies:
1313
mocktail: ^1.0.0
1414
test: ^1.19.2
15-
very_good_analysis: ^6.0.0
15+
very_good_analysis: ^7.0.0

0 commit comments

Comments
 (0)