diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-09 12:33:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-09 16:33:09 +0000 |
| commit | 1e0ac609b57b9efdafd54de4cb56f98c507c032f (patch) | |
| tree | 9a78e6a456a59a25ff6e1bfa14ef8b657c4d3040 /cli/Cargo.toml | |
| parent | 3daab54612309a3e3aec5b7b8bd24b39ad510943 (diff) | |
BREAKING: remove deprecated files config (#25535)
The long form "files" config has been flattened into the parent.
Old:
```json
{
"test": {
"files": {
"include": ["**/*.ts"],
"exclude": ["ignore.ts"]
}
}
}
```
New:
```json
{
"test": {
"include": ["**/*.ts"],
"exclude": ["ignore.ts"]
}
}
```
This was deprecated some time ago, but we're removing it now in Deno
2.0.
Closes #25415
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c582004ad..63ad21c37 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -65,7 +65,7 @@ winres.workspace = true [dependencies] deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] } deno_cache_dir = { workspace = true } -deno_config = { version = "=0.33.2", features = ["workspace", "sync"] } +deno_config = { version = "=0.34.0", features = ["workspace", "sync"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "0.148.0", features = ["html", "syntect"] } deno_graph = { version = "=0.82.1" } |
