summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-03-17 13:55:24 -0400
committerGitHub <noreply@github.com>2022-03-17 13:55:24 -0400
commit9c403f146e801bed741d9d66aaa415ff607cb657 (patch)
tree6f80585cdc0fa657d4046f63f11d921a3142b8fd
parent3c4750097516fa9c0aa50cf57952221fd50528e7 (diff)
fix(config-file): fix config-file.v1.json schema to allow colons in the task name (#14013)
-rw-r--r--cli/schemas/config-file.v1.json2
1 files changed, 1 insertions, 1 deletions
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."
}