From 86e53268ed7d732f8dbfa155ce73fea989944b7d Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Wed, 13 Sep 2023 22:22:28 +0200 Subject: [PATCH] chore: build docs rephrasing --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e6ea376..0bfab5a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -56,7 +56,7 @@ program .option('-f --format [fmt]', 'The module system of your application. `cjs` or `esm`', 'esm') .option('-m --mode [mode]', 'the mode for sern to build in. `production` or `development`', 'development') .option('-W --suppress-warnings', 'suppress experimental warning') - .option('-p --project [filePath]', 'build with this sern.build file') + .option('-p --project [filePath]', 'build with the provided sern.build file') .option('-e --env', 'path to .env file') .option('--tsconfig [filePath]', 'Use this tsconfig') .action(async (...args) => importDynamic('build.js').then((m) => m.build(...args)));