From bfcd8562367e776a04264633be7573b01576ee7d Mon Sep 17 00:00:00 2001 From: Levi Mykel Gable <9385378+levimykel@users.noreply.github.com> Date: Fri, 24 Jan 2025 17:49:39 +0100 Subject: [PATCH] chore: add squad environments to playgrounds (#1542) --- scripts/play.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/play.ts b/scripts/play.ts index d970882f6..fdeb87539 100644 --- a/scripts/play.ts +++ b/scripts/play.ts @@ -107,7 +107,16 @@ Arguments: return; } - if (!["production", "staging", "development"].includes(args.environment)) { + if ( + ![ + "production", + "staging", + "development", + "dev-tools", + "marketing-tools", + "platform", + ].includes(args.environment) + ) { throw new CommandError(`Unsupported environment: ${args.environment}`); }