summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/jsr/no_module_graph/multiple.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-11-10 13:40:39 -0500
committerGitHub <noreply@github.com>2023-11-10 18:40:39 +0000
commitb78c7130e9986ce41284f33a0803ecdf6dd6affd (patch)
tree5d20148c1e7f449f9d6baa05fe6604aafc2a14b3 /cli/tests/testdata/jsr/no_module_graph/multiple.ts
parent882c54d5c407affb26012d81fea67cccfc214bb7 (diff)
fix: improve `deno doc --lint` error messages (#21156)
This also updates deno_graph, which has the JSR change to use "exports". It's not yet useful atm, so I've made this PR a fix about the deno doc --lint error message improvements. I'll do a follow-up PR that adds exports to the deno.json
Diffstat (limited to 'cli/tests/testdata/jsr/no_module_graph/multiple.ts')
-rw-r--r--cli/tests/testdata/jsr/no_module_graph/multiple.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/jsr/no_module_graph/multiple.ts b/cli/tests/testdata/jsr/no_module_graph/multiple.ts
index 0df32b780..660ed8be6 100644
--- a/cli/tests/testdata/jsr/no_module_graph/multiple.ts
+++ b/cli/tests/testdata/jsr/no_module_graph/multiple.ts
@@ -1,5 +1,5 @@
-import version1 from "jsr:@denotest/no_module_graph@0.1.0/mod.ts";
-import version2 from "jsr:@denotest/no_module_graph@^0.2/mod.ts";
+import version1 from "jsr:@denotest/no_module_graph@0.1.0";
+import version2 from "jsr:@denotest/no_module_graph@^0.2";
console.log(version1);
console.log(version2);