Skip to content

Commit

Permalink
Merge branch 'main' into table-field
Browse files Browse the repository at this point in the history
  • Loading branch information
levimykel committed Jan 24, 2025
2 parents 2482253 + bfcd856 commit b7555b2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scripts/play.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
}

Expand Down

0 comments on commit b7555b2

Please sign in to comment.