From 7d853ff33bf3c5845475b80a940036b2da267992 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 17 Mar 2022 13:55:24 -0400 Subject: [PATCH] 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(-) diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 2ab06aead6..17206fc18b 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." }