From 721d373856e2bcf39d7ba670e8d3e8894b61e8b8 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Fri, 8 May 2026 14:09:05 +0200 Subject: [PATCH] chore(generators): add // anchor comments for event/job generators --- turbo/generators/templates/feature/src/di/bind-dev-seed.ts.hbs | 2 ++ .../generators/templates/feature/src/di/bind-production.ts.hbs | 2 ++ turbo/generators/templates/feature/src/di/symbols.ts.hbs | 2 ++ turbo/generators/templates/feature/src/index.ts.hbs | 2 ++ 4 files changed, 8 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 f3d5495..3b866a0 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 @@ -79,4 +79,6 @@ 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 35c2c21..eeb2b6f 100644 --- a/turbo/generators/templates/feature/src/di/bind-production.ts.hbs +++ b/turbo/generators/templates/feature/src/di/bind-production.ts.hbs @@ -71,4 +71,6 @@ 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 5f5008f..ceb16f7 100644 --- a/turbo/generators/templates/feature/src/di/symbols.ts.hbs +++ b/turbo/generators/templates/feature/src/di/symbols.ts.hbs @@ -4,4 +4,6 @@ export const {{constantCase name}}_SYMBOLS = { IGet{{pascalCase entity}}UseCase: Symbol.for("{{kebabCase name}}:IGet{{pascalCase entity}}UseCase"), // Controllers 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 70e2bc1..22b584f 100644 --- a/turbo/generators/templates/feature/src/index.ts.hbs +++ b/turbo/generators/templates/feature/src/index.ts.hbs @@ -14,3 +14,5 @@ export { // Controller type aliases export type { IGet{{pascalCase entity}}Controller } from "./interface-adapters/controllers/get-{{kebabCase entity}}.controller"; + +//