chore: hide internal commands (#30170)

This commit is contained in:
Pavel Feldman 2024-03-28 12:19:03 -07:00 committed by GitHub
parent 4781b3c3a8
commit baaf8c8093
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,7 @@ import { runDevServer } from './devServer';
export { program } from 'playwright/lib/program';
function addDevServerCommand(program: Command) {
const command = program.command('dev-server');
const command = program.command('dev-server', { hidden: true });
command.description('start dev server');
command.option('-c, --config <file>', `Configuration file, or a test directory with optional "playwright.config.{m,c}?{js,ts}"`);
command.action(options => {