diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-19 19:35:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 23:35:24 +0000 |
commit | 5664ac0b49f69fefee68b3c6893266eb6a5e3a74 (patch) | |
tree | a1edeb09e0892b7708a18571541e8671c0ec3fd7 /cli/schemas | |
parent | cc406c8360b4ba559d7f13e14d2a32e1ab761b0d (diff) |
chore: add Deno version information to new 1.34 deno.json properties (#19202)
These already come up in the auto-complete, so let's let users know what
versions these are available in.
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 864042877..99f2b3a79 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -225,7 +225,7 @@ }, "exclude": { "type": "array", - "description": "List of files or directories that will be ignored by all other configurations.", + "description": "List of files or directories that will be ignored by all other configurations. Requires Deno 1.34 or later.", "items": { "type": "string" } @@ -423,7 +423,7 @@ } }, "nodeModulesDir": { - "description": "Enables or disables the use of a local node_modules folder for npm packages. Alternatively, use the `--node-modules-dir` or `--node-modules-dir=false` flag.", + "description": "Enables or disables the use of a local node_modules folder for npm packages. Alternatively, use the `--node-modules-dir` or `--node-modules-dir=false` flag. Requires Deno 1.34 or later.", "type": "boolean" }, "tasks": { |