From 76b7331b0d817bd4b304d31cc049cbce6ba3b3a2 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Sat, 11 May 2024 00:20:00 -0400 Subject: [PATCH] [healthcheck] Only glob files with certain extensions by default ghstack-source-id: b8db17266992a705645c86916966e06404709fa0 Pull Request resolved: https://github.com/facebook/react-forget/pull/2957 --- compiler/packages/react-compiler-healthcheck/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/packages/react-compiler-healthcheck/src/index.ts b/compiler/packages/react-compiler-healthcheck/src/index.ts index 7ccb6bf7fe..492c05d998 100644 --- a/compiler/packages/react-compiler-healthcheck/src/index.ts +++ b/compiler/packages/react-compiler-healthcheck/src/index.ts @@ -20,7 +20,7 @@ async function main() { .option("src", { description: "glob expression matching src files to compile", type: "string", - default: "**/*.*", + default: "**/*.{js,jsx,ts,tsx,json}", }) .parseSync();