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:
parent
06d6fd06fd
commit
7d853ff33b
1 changed files with 1 additions and 1 deletions
|
@ -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."
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue