diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-08-14 22:38:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 22:38:18 +0100 |
commit | 4eff1e8ec4c12c709ce7e0e6d430ecbbc571bfbe (patch) | |
tree | 88c3bae373e03e20ca251b7eb91b5c1fa53d5b20 /tests/registry | |
parent | 3a3315cc7f3466ce229f6f150402d5ccf72b3d1d (diff) |
fix(lsp): import map lookup for jsr subpath auto import (#25025)
Diffstat (limited to 'tests/registry')
-rw-r--r-- | tests/registry/jsr/@std/url/0.220.1/join.ts | 2 | ||||
-rw-r--r-- | tests/registry/jsr/@std/url/0.220.1/normalize.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/registry/jsr/@std/url/0.220.1/join.ts b/tests/registry/jsr/@std/url/0.220.1/join.ts index 158994ad3..b9c8f19d3 100644 --- a/tests/registry/jsr/@std/url/0.220.1/join.ts +++ b/tests/registry/jsr/@std/url/0.220.1/join.ts @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. -import { join as posixJoin } from "jsr:/@std/path@^0.220.1/posix/join"; +import { join as posixJoin } from "jsr:@std/path@^0.220.1/posix/join"; /** * Join a base `URL` and a series of `paths`, then normalizes the resulting URL. diff --git a/tests/registry/jsr/@std/url/0.220.1/normalize.ts b/tests/registry/jsr/@std/url/0.220.1/normalize.ts index dc2305701..e8d728435 100644 --- a/tests/registry/jsr/@std/url/0.220.1/normalize.ts +++ b/tests/registry/jsr/@std/url/0.220.1/normalize.ts @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. -import { normalize as posixNormalize } from "jsr:/@std/path@^0.220.1/posix/normalize"; +import { normalize as posixNormalize } from "jsr:@std/path@^0.220.1/posix/normalize"; /** * Normalize the `URL`, resolving `'..'` and `'.'` segments and multiple |