summaryrefslogtreecommitdiff
path: root/tests/specs/npm/workspace_wildcards/main.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-07-08 20:23:45 -0400
committerGitHub <noreply@github.com>2024-07-09 00:23:45 +0000
commite30ad77ffa471c4aa00c07cca49eb96bd6065612 (patch)
treed012f90a55b58b9c269d55e967359de14ac5d9a9 /tests/specs/npm/workspace_wildcards/main.ts
parentd472c48b388992e2e0b059492dddf50400520809 (diff)
feat: support wildcards in npm workspaces (#24471)
Implemented in https://github.com/denoland/deno_config/pull/74 Closes https://github.com/denoland/deno/issues/24420
Diffstat (limited to 'tests/specs/npm/workspace_wildcards/main.ts')
-rw-r--r--tests/specs/npm/workspace_wildcards/main.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/npm/workspace_wildcards/main.ts b/tests/specs/npm/workspace_wildcards/main.ts
new file mode 100644
index 000000000..a9a90ba12
--- /dev/null
+++ b/tests/specs/npm/workspace_wildcards/main.ts
@@ -0,0 +1,5 @@
+import { add } from "npm:@denotest/a";
+import { subtract } from "npm:@denotest/b";
+
+console.log(add(1, 2));
+console.log(add(4, 3));