diff --git a/cli/send.ts b/cli/send.ts index 6ec7b5b..7c69354 100644 --- a/cli/send.ts +++ b/cli/send.ts @@ -21,7 +21,11 @@ const templatesDir = fromFileUrl(templatesDirUrl) for await ( const template of Deno.readDir(templatesDir) ) { - if (template.isFile && template.name.endsWith('.tsx')) { + if ( + template.isFile && + template.name.endsWith('.tsx') && + !template.name.startsWith('_') + ) { const modPath = new URL( template.name, `${import.meta.resolve('../templates')}/`,