1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00

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 Kitson Kelly
parent 06d6fd06fd
commit 7d853ff33b

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