From 71c1a6c216b646520e07d06298cf286c46b11b9a Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Fri, 8 May 2026 22:07:43 +0200 Subject: [PATCH] chore(generators): add // anchors to feature template Co-Authored-By: Claude Sonnet 4.6 --- turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs | 1 + turbo/generators/templates/feature/src/di/bind-production.ts.hbs | 1 + turbo/generators/templates/feature/src/di/symbols.ts.hbs | 1 + turbo/generators/templates/feature/src/index.ts.hbs | 1 + 4 files changed, 4 insertions(+) diff --git a/turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs b/turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs index 3b866a0..9470b52 100644 --- a/turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs +++ b/turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs @@ -81,4 +81,5 @@ export async function bindDevSeed{{pascalCase name}}( ); // // + // } diff --git a/turbo/generators/templates/feature/src/di/bind-production.ts.hbs b/turbo/generators/templates/feature/src/di/bind-production.ts.hbs index eeb2b6f..97bdfdb 100644 --- a/turbo/generators/templates/feature/src/di/bind-production.ts.hbs +++ b/turbo/generators/templates/feature/src/di/bind-production.ts.hbs @@ -73,4 +73,5 @@ export function bindProduction{{pascalCase name}}( ); // // + // } diff --git a/turbo/generators/templates/feature/src/di/symbols.ts.hbs b/turbo/generators/templates/feature/src/di/symbols.ts.hbs index ceb16f7..19f9d35 100644 --- a/turbo/generators/templates/feature/src/di/symbols.ts.hbs +++ b/turbo/generators/templates/feature/src/di/symbols.ts.hbs @@ -6,4 +6,5 @@ export const {{constantCase name}}_SYMBOLS = { IGet{{pascalCase entity}}Controller: Symbol.for("{{kebabCase name}}:IGet{{pascalCase entity}}Controller"), // // + // } as const; diff --git a/turbo/generators/templates/feature/src/index.ts.hbs b/turbo/generators/templates/feature/src/index.ts.hbs index 22b584f..53db9ac 100644 --- a/turbo/generators/templates/feature/src/index.ts.hbs +++ b/turbo/generators/templates/feature/src/index.ts.hbs @@ -16,3 +16,4 @@ export { export type { IGet{{pascalCase entity}}Controller } from "./interface-adapters/controllers/get-{{kebabCase entity}}.controller"; // +//