From a583bab97323dec778e4bdc937d5b3600fc0201d Mon Sep 17 00:00:00 2001 From: Marc Lasson Date: Tue, 3 Sep 2024 14:21:58 +0200 Subject: [PATCH] Fix typo in option hint --- src/package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.ts b/src/package.ts index 3abe9e5b..95b3afe0 100644 --- a/src/package.ts +++ b/src/package.ts @@ -2019,7 +2019,7 @@ export async function printAndValidatePackagedFiles(files: IFile[], cwd: string, message += unusedIncludePatterns.map(p => ` - ${p}`).join('\n'); message += '\nRemove any include pattern which is not needed.\n'; message += `\n=> Run ${chalk.bold('vsce ls --tree')} to see all included files.\n`; - message += `=> Use ${chalk.bold('--allow-unused-files-patterns')} to skip this check`; + message += `=> Use ${chalk.bold('--allow-unused-files-pattern')} to skip this check`; util.log.error(message); process.exit(1); }