summaryrefslogtreecommitdiff
path: root/tests/specs/compile/jsr_with_deps/main.ts
blob: 44a7dc08c83df74265af1e8df2b5b482d0e7b65a (plain)
1
2
3
4
5
6
7
8
// this was previously hanging in deno compile and wouldn't work
import { join } from "jsr:@std/url@0.220/join";
import "jsr:@std/url@0.220/normalize";

console.log(join);

// ensure import.meta.resolve works in compile for jsr specifiers
console.log(import.meta.resolve("jsr:@std/url@0.220/join"));