From b8808d8b7d8409132b446e884f11cb1e1b1d7142 Mon Sep 17 00:00:00 2001 From: Ben <3447705+bcabanes@users.noreply.github.com> Date: Thu, 11 May 2023 16:13:27 -0400 Subject: [PATCH] fix(react): add ts extension to tailwindcss utility globe --- packages/react/tailwind.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/tailwind.ts b/packages/react/tailwind.ts index 12f448ac9509f..4deca40a2260d 100644 --- a/packages/react/tailwind.ts +++ b/packages/react/tailwind.ts @@ -7,7 +7,7 @@ import { createGlobPatternsForDependencies as jsGenerateGlobs } from '@nx/js/src */ export function createGlobPatternsForDependencies( dirPath: string, - fileGlobPattern: string = '/**/!(*.stories|*.spec).{tsx,jsx,js,html}' + fileGlobPattern: string = '/**/!(*.stories|*.spec).{tsx,ts,jsx,js,html}' ) { try { return jsGenerateGlobs(dirPath, fileGlobPattern);