From 8f158a124d18c41cdc48431581975409bd083f00 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Mon, 16 Sep 2024 16:28:14 +0100 Subject: [PATCH] feat: make `npx playwright clear-cache` public --- packages/playwright/src/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/program.ts b/packages/playwright/src/program.ts index dd8d181676..775ef27065 100644 --- a/packages/playwright/src/program.ts +++ b/packages/playwright/src/program.ts @@ -69,7 +69,7 @@ function addListFilesCommand(program: Command) { } function addClearCacheCommand(program: Command) { - const command = program.command('clear-cache', { hidden: true }); + const command = program.command('clear-cache'); command.description('clears build and test caches'); command.option('-c, --config ', `Configuration file, or a test directory with optional "playwright.config.{m,c}?{js,ts}"`); command.action(async opts => {