From ab8b45bf42bb6568af401eac87758c8f4652bf01 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 22 Sep 2023 23:23:03 +0000 Subject: [PATCH] ci: Format code --- generate-routes.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/generate-routes.ts b/generate-routes.ts index 19a65a10..12f4a3bd 100644 --- a/generate-routes.ts +++ b/generate-routes.ts @@ -168,8 +168,9 @@ const write = async (data: string, ...path: string[]): Promise => { } const routeRootPath = resolve('src', 'lib', 'seam', 'connect', 'routes') -const writeRoute = async (route: Route): Promise => - { await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`); } +const writeRoute = async (route: Route): Promise => { + await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`) +} const routes = [exampleRoute]