diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-04 23:42:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 00:42:18 +0100 |
commit | 051552172c07e42bf666d04863bc511667471509 (patch) | |
tree | 4f35264d07984463f29785106c5327bf56124244 /Cargo.lock | |
parent | 84aee0be9aac53499a757973a8a2054d2a44e479 (diff) |
fix(workspace): support wildcard packages (#26568)
This commit adds support for wildcard packages in `workspace`
configuration option in `deno.json`. This is now supported:
```
{
"workspace": [
"./packages/*"
]
}
```
Closes https://github.com/denoland/deno/issues/25783
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 40b0bc171..c22d49c41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1387,9 +1387,9 @@ dependencies = [ [[package]] name = "deno_config" -version = "0.37.2" +version = "0.38.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5900bfb37538d83b19ba0b157cdc785770e38422ee4632411e3bd3d90ac0f537" +checksum = "966825073480a6ac7e01977a3879d13edc8d6ea2d65ea164b37156a5fb206e9a" dependencies = [ "anyhow", "deno_package_json", |