From c90a30d48cf129b0a6bbbe72b27fc177febc324b Mon Sep 17 00:00:00 2001 From: "Henry Q. Dineen" Date: Tue, 4 Nov 2025 20:18:09 -0500 Subject: [PATCH] [healthcheck] correct yargs scriptName and usage --- compiler/packages/react-compiler-healthcheck/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/packages/react-compiler-healthcheck/src/index.ts b/compiler/packages/react-compiler-healthcheck/src/index.ts index 548a373477b52..7af9c91242b10 100644 --- a/compiler/packages/react-compiler-healthcheck/src/index.ts +++ b/compiler/packages/react-compiler-healthcheck/src/index.ts @@ -15,8 +15,8 @@ import strictModeCheck from './checks/strictMode'; async function main() { const argv = yargs(process.argv.slice(2)) - .scriptName('healthcheck') - .usage('$ npx healthcheck ') + .scriptName('react-compiler-healthcheck') + .usage('$ npx react-compiler-healthcheck --src=""') .option('src', { description: 'glob expression matching src files to compile', type: 'string',