-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: mitigate denoland/deno_core#762 (#377)
* fix: patch dependency * chore: update `Cargo.lock` * chore: add an integration test for forced redirects for specifiers
- Loading branch information
1 parent
c8fc7ac
commit 107f27d
Showing
4 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// NOTE(Nyannyacha): This is the same test case as described in denoland/deno_core#762, but it is a | ||
// minimal reproducible sample of what happens in the field. | ||
// | ||
// `@1.x` suffixes cause forced redirects for specifiers. | ||
|
||
import * as A from "https://lib.deno.dev/x/[email protected]/mod.ts"; | ||
import * as B from "https://lib.deno.dev/x/[email protected]/types.ts"; | ||
|
||
console.log(A, B); | ||
|
||
Deno.serve((_req) => new Response("meow")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters