diff --git a/src/Action/CreateListOfFilesToGenerate.php b/src/Action/CreateListOfFilesToGenerate.php index 3bde520..fd16c20 100644 --- a/src/Action/CreateListOfFilesToGenerate.php +++ b/src/Action/CreateListOfFilesToGenerate.php @@ -28,9 +28,9 @@ final class CreateListOfFilesToGenerate switch (strtolower($configurationDataDto->type)) { case (strtolower(ProjectType::Astro->name)): $filesToGenerate = collect([ - ['astro/typescript/.envrc', '.envrc'], - ['astro/typescript/flake.nix', 'flake.nix'], - ['astro/typescript/tsconfig.json', 'tsconfig.json'], + ['astro/.envrc', '.envrc'], + ['astro/flake.nix', 'flake.nix'], + ['astro/tsconfig.json', 'tsconfig.json'], ])->map(function (array $file) { return new TemplateFile( data: $file[0], diff --git a/templates/astro/typescript/.envrc.twig b/templates/astro/.envrc.twig similarity index 100% rename from templates/astro/typescript/.envrc.twig rename to templates/astro/.envrc.twig diff --git a/templates/astro/typescript/flake.nix.twig b/templates/astro/flake.nix.twig similarity index 100% rename from templates/astro/typescript/flake.nix.twig rename to templates/astro/flake.nix.twig diff --git a/templates/astro/typescript/tsconfig.json.twig b/templates/astro/tsconfig.json.twig similarity index 100% rename from templates/astro/typescript/tsconfig.json.twig rename to templates/astro/tsconfig.json.twig