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 /tests/specs/run/workspaces/wildcard/main.ts | |
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 'tests/specs/run/workspaces/wildcard/main.ts')
-rw-r--r-- | tests/specs/run/workspaces/wildcard/main.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/run/workspaces/wildcard/main.ts b/tests/specs/run/workspaces/wildcard/main.ts new file mode 100644 index 000000000..e69143370 --- /dev/null +++ b/tests/specs/run/workspaces/wildcard/main.ts @@ -0,0 +1,5 @@ +import chalk from "chalk"; +import "./packages/foo/mod.ts"; +import "./packages/bar/mod.ts"; + +console.log(chalk); |