Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename the option to --experimental-blueprints-v2-runner
  • Loading branch information
adamziel committed Jul 21, 2025
commit cd4000f85adbc30696e531b44c6521cd126b3277
4 changes: 2 additions & 2 deletions packages/playground/cli/src/run-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export interface RunCLIArgs {
internalCookieStore?: boolean;
'additional-blueprint-steps'?: any[];
xdebug?: boolean;
'experimental-blueprints-v2'?: boolean;
'experimental-blueprints-v2-runner'?: boolean;

// --------- Blueprint V1 args -----------
skipWordPressSetup?: boolean;
Expand Down Expand Up @@ -378,7 +378,7 @@ export async function runCLI(args: RunCLIArgs): Promise<RunCLIServer> {
);

let handler: BlueprintsV1Handler | BlueprintsV2Handler;
if (args['experimental-blueprints-v2']) {
if (args['experimental-blueprints-v2-runner']) {
handler = new BlueprintsV2Handler(args, {
siteUrl: absoluteUrl,
processIdSpaceLength,
Expand Down