Skip to content

Commit

Permalink
chore(deps): bump very_good_analysis from 5.1.0 to 6.0.0 in /bricks/d…
Browse files Browse the repository at this point in the history
…art_frog_prod_server/hooks (#1424)

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]>
  • Loading branch information
dependabot[bot] and tomarra authored Jul 2, 2024
1 parent 473b7ba commit cad2db4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ updates:
directory: "/bricks/dart_frog_dev_server/hooks"
schedule:
interval: "daily"
- package-ecosystem: "pub"
directory: "/bricks/dart_frog_new/hooks"
schedule:
interval: "daily"
- package-ecosystem: "pub"
directory: "/bricks/dart_frog_prod_server/hooks"
schedule:
Expand Down
4 changes: 2 additions & 2 deletions bricks/dart_frog_new/hooks/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include: package:very_good_analysis/analysis_options.5.1.0.yaml
include: package:very_good_analysis/analysis_options.6.0.0.yaml

linter:
rules:
public_member_api_docs: false
public_member_api_docs: false
3 changes: 2 additions & 1 deletion bricks/dart_frog_new/hooks/lib/src/route_to_path.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ import 'package:path/path.dart' as path;
/// If [preferIndex] is true, the path will be converted to a directory path
/// with an index dart file.
///
/// ```
/// ```markdown
/// "/" -> "./routes/index.dart" (if preferIndex is false)
/// "/" -> "./routes/index.dart" (if preferIndex is true)
/// "/hello" -> "./routes/hello.dart" (if preferIndex is false)
/// "/hello" -> "./routes/hello/index.dart" (if preferIndex is true)
/// "/hello/[name]" -> "./routes/hello/[name].dart" (if preferIndex is false)
/// "/hello/[name]" -> "./routes/hello/[name]/index.dart" (if preferIndex is true)
/// ```
String routeToPath(
String route, {
bool preferIndex = false,
Expand Down
2 changes: 1 addition & 1 deletion bricks/dart_frog_new/hooks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:
dev_dependencies:
mocktail: ^1.0.0
test: ^1.19.2
very_good_analysis: ^5.1.0
very_good_analysis: ^6.0.0
2 changes: 1 addition & 1 deletion bricks/dart_frog_prod_server/hooks/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
linter:
rules:
public_member_api_docs: false
2 changes: 1 addition & 1 deletion bricks/dart_frog_prod_server/hooks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencies:
dev_dependencies:
mocktail: ^1.0.0
test: ^1.25.0
very_good_analysis: ^5.1.0
very_good_analysis: ^6.0.0

0 comments on commit cad2db4

Please sign in to comment.