From 941613854c8db61db102afc4a572f84368be897b Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Thu, 25 Sep 2025 09:39:20 +0200 Subject: [PATCH] refactor: rephrase the flag description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fredrik Adelöw Signed-off-by: Camila Belo --- packages/cli/src/modules/build/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/modules/build/index.ts b/packages/cli/src/modules/build/index.ts index 88706046ee..5382adfec9 100644 --- a/packages/cli/src/modules/build/index.ts +++ b/packages/cli/src/modules/build/index.ts @@ -139,7 +139,7 @@ export const buildPlugin = createCliPlugin({ ) .option( '--entrypoint ', - 'Entry directory path (uses index file) or entry file path (without extension). Defaults to "dev"', + 'The entrypoint to start from, relative to the package root. Can point to either a file (without extension) or a directory (in which case the index file in that directory is used). Defaults to "dev"', ) .action(lazy(() => import('./commands/package/start'), 'command'));