From 9c403f146e801bed741d9d66aaa415ff607cb657 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 17 Mar 2022 13:55:24 -0400 Subject: fix(config-file): fix config-file.v1.json schema to allow colons in the task name (#14013) --- cli/schemas/config-file.v1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 2ab06aead..17206fc18 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -315,7 +315,7 @@ "description": "Configuration for deno task", "type": "object", "patternProperties": { - "^[A-Za-z][A-Za-z0-9_\\-]*$": { + "^[A-Za-z][A-Za-z0-9_\\-:]*$": { "type": "string", "description": "Command to execute for this task name." } -- cgit v1.2.3