fix(config-file): fix config-file.v1.json schema to allow colons in the task name (#14013)

This commit is contained in:
David Sherret 2022-03-17 13:55:24 -04:00 committed by GitHub
parent 3c47500975
commit 9c403f146e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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."
}