Skip to content

Commit 2ba1179

Browse files
authored
feat: removing external checking from code gen (#928)
1 parent e60066c commit 2ba1179

File tree

7 files changed

+77
-265
lines changed

7 files changed

+77
-265
lines changed

packages/dart_frog_gen/lib/src/build_route_configuration.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RouteConfiguration buildRouteConfiguration(Directory directory) {
2525

2626
final endpoints = <String, List<RouteFile>>{};
2727
final middleware = <MiddlewareFile>[
28-
if (globalMiddleware != null) globalMiddleware
28+
if (globalMiddleware != null) globalMiddleware,
2929
];
3030
final routes = <RouteFile>[];
3131
final rogueRoutes = <RouteFile>[];

packages/dart_frog_gen/lib/src/validate_route_configuration/external_path_dependencies.dart

Lines changed: 0 additions & 49 deletions
This file was deleted.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
export 'external_path_dependencies.dart';
21
export 'rogue_routes.dart';
32
export 'route_conflicts.dart';

0 commit comments

Comments
 (0)