2
0

(radar) Add radar cumulative keyword alternatives check

This commit is contained in:
Baptiste Arnaud
2024-01-15 10:13:55 +01:00
parent b412f0e4dc
commit 0b00fa7533
3 changed files with 15 additions and 3 deletions

4
packages/env/env.ts vendored
View File

@ -79,7 +79,9 @@ const baseEnv = {
RADAR_CUMULATIVE_KEYWORDS: z
.string()
.min(1)
.transform((val) => val.split('/').map((s) => s.split(',')))
.transform((val) =>
val.split('/').map((s) => s.split(',').map((s) => s.split('|')))
)
.optional(),
},
client: {