-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
90 additions
and
85 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -257,7 +257,7 @@ async fn test_deno_version_not_found_then_found() { | |
content: "import 'deno:@scope/[email protected]/mod.ts".into(), | ||
})) | ||
}), | ||
"https://deno-registry-staging.net/@scope/a/meta.json" => { | ||
"https://registry-staging.deno.com/@scope/a/meta.json" => { | ||
Box::pin(async move { | ||
Ok(Some(LoadResponse::Module { | ||
specifier: specifier.clone(), | ||
|
@@ -275,7 +275,7 @@ async fn test_deno_version_not_found_then_found() { | |
})) | ||
}) | ||
} | ||
"https://deno-registry-staging.net/@scope/a/1.2.0_meta.json" => { | ||
"https://registry-staging.deno.com/@scope/a/1.2.0_meta.json" => { | ||
Box::pin(async move { | ||
Ok(Some(LoadResponse::Module { | ||
specifier: specifier.clone(), | ||
|
@@ -284,7 +284,7 @@ async fn test_deno_version_not_found_then_found() { | |
})) | ||
}) | ||
} | ||
"https://deno-registry-staging.net/@scope/a/1.2.0/mod.ts" => { | ||
"https://registry-staging.deno.com/@scope/a/1.2.0/mod.ts" => { | ||
Box::pin(async move { | ||
Ok(Some(LoadResponse::Module { | ||
specifier: specifier.clone(), | ||
|
@@ -313,21 +313,21 @@ async fn test_deno_version_not_found_then_found() { | |
vec![ | ||
("file:///main.ts".to_string(), LoaderCacheSetting::Prefer), | ||
( | ||
"https://deno-registry-staging.net/@scope/a/meta.json".to_string(), | ||
"https://registry-staging.deno.com/@scope/a/meta.json".to_string(), | ||
LoaderCacheSetting::Prefer | ||
), | ||
("file:///main.ts".to_string(), LoaderCacheSetting::Prefer), | ||
( | ||
"https://deno-registry-staging.net/@scope/a/meta.json".to_string(), | ||
"https://registry-staging.deno.com/@scope/a/meta.json".to_string(), | ||
LoaderCacheSetting::Reload | ||
), | ||
( | ||
"https://deno-registry-staging.net/@scope/a/1.2.0_meta.json" | ||
"https://registry-staging.deno.com/@scope/a/1.2.0_meta.json" | ||
.to_string(), | ||
LoaderCacheSetting::Reload | ||
), | ||
( | ||
"https://deno-registry-staging.net/@scope/a/1.2.0/mod.ts".to_string(), | ||
"https://registry-staging.deno.com/@scope/a/1.2.0/mod.ts".to_string(), | ||
LoaderCacheSetting::Prefer | ||
), | ||
] | ||
|
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# https://deno-registry-staging.net/@scope/a/meta.json | ||
# https://registry-staging.deno.com/@scope/a/meta.json | ||
{ | ||
"versions": { | ||
"1.0.0": {} | ||
} | ||
} | ||
|
||
# https://deno-registry-staging.net/@scope/a/1.0.0_meta.json | ||
# https://registry-staging.deno.com/@scope/a/1.0.0_meta.json | ||
{ | ||
"moduleGraph1": { | ||
"/mod.ts": { | ||
|
@@ -32,14 +32,14 @@ | |
} | ||
} | ||
|
||
# https://deno-registry-staging.net/@scope/b/meta.json | ||
# https://registry-staging.deno.com/@scope/b/meta.json | ||
{ | ||
"versions": { | ||
"9.0.0": {} | ||
} | ||
} | ||
|
||
# https://deno-registry-staging.net/@scope/b/9.0.0_meta.json | ||
# https://registry-staging.deno.com/@scope/b/9.0.0_meta.json | ||
{ | ||
"moduleGraph1": { | ||
"/mod.ts": { | ||
|
@@ -57,22 +57,22 @@ | |
import 'deno:@scope/a@^1.0/mod.ts'; | ||
|
||
|
||
# https://deno-registry-staging.net/@scope/a/1.0.0/mod.ts | ||
# https://registry-staging.deno.com/@scope/a/1.0.0/mod.ts | ||
1; // this will be ignored | ||
|
||
# https://deno-registry-staging.net/@scope/a/1.0.0/a.ts | ||
# https://registry-staging.deno.com/@scope/a/1.0.0/a.ts | ||
2; // this will be ignored | ||
|
||
# https://deno-registry-staging.net/@scope/a/1.0.0/b.ts | ||
# https://registry-staging.deno.com/@scope/a/1.0.0/b.ts | ||
import './c.ts'; | ||
|
||
# https://deno-registry-staging.net/@scope/a/1.0.0/c.ts | ||
# https://registry-staging.deno.com/@scope/a/1.0.0/c.ts | ||
3; | ||
|
||
# https://deno-registry-staging.net/@scope/b/9.0.0/mod.ts | ||
# https://registry-staging.deno.com/@scope/b/9.0.0/mod.ts | ||
4; | ||
|
||
# https://deno-registry-staging.net/@scope/b/9.0.0/inner.ts | ||
# https://registry-staging.deno.com/@scope/b/9.0.0/inner.ts | ||
5; | ||
|
||
# output | ||
|
@@ -111,7 +111,7 @@ import './c.ts'; | |
{ | ||
"specifier": "./b.ts", | ||
"code": { | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/b.ts", | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/b.ts", | ||
"span": { | ||
"start": { | ||
"line": 13, | ||
|
@@ -143,15 +143,15 @@ import './c.ts'; | |
], | ||
"size": 27, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/a.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/a.ts" | ||
}, | ||
{ | ||
"kind": "esm", | ||
"dependencies": [ | ||
{ | ||
"specifier": "./c.ts", | ||
"code": { | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/c.ts", | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/c.ts", | ||
"span": { | ||
"start": { | ||
"line": 0, | ||
|
@@ -167,21 +167,21 @@ import './c.ts'; | |
], | ||
"size": 17, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/b.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/b.ts" | ||
}, | ||
{ | ||
"kind": "esm", | ||
"size": 3, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/c.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/c.ts" | ||
}, | ||
{ | ||
"kind": "esm", | ||
"dependencies": [ | ||
{ | ||
"specifier": "./a.ts", | ||
"code": { | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/a.ts", | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/a.ts", | ||
"span": { | ||
"start": { | ||
"line": 5, | ||
|
@@ -197,21 +197,21 @@ import './c.ts'; | |
], | ||
"size": 27, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/a/1.0.0/mod.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/a/1.0.0/mod.ts" | ||
}, | ||
{ | ||
"kind": "esm", | ||
"size": 3, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/b/9.0.0/inner.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/b/9.0.0/inner.ts" | ||
}, | ||
{ | ||
"kind": "esm", | ||
"dependencies": [ | ||
{ | ||
"specifier": "./inner.ts", | ||
"code": { | ||
"specifier": "https://deno-registry-staging.net/@scope/b/9.0.0/inner.ts", | ||
"specifier": "https://registry-staging.deno.com/@scope/b/9.0.0/inner.ts", | ||
"span": { | ||
"start": { | ||
"line": 5, | ||
|
@@ -227,12 +227,12 @@ import './c.ts'; | |
], | ||
"size": 3, | ||
"mediaType": "TypeScript", | ||
"specifier": "https://deno-registry-staging.net/@scope/b/9.0.0/mod.ts" | ||
"specifier": "https://registry-staging.deno.com/@scope/b/9.0.0/mod.ts" | ||
} | ||
], | ||
"redirects": { | ||
"deno:@scope/a@^1.0/mod.ts": "https://deno-registry-staging.net/@scope/a/1.0.0/mod.ts", | ||
"deno:@scope/b/mod.ts": "https://deno-registry-staging.net/@scope/b/9.0.0/mod.ts" | ||
"deno:@scope/a@^1.0/mod.ts": "https://registry-staging.deno.com/@scope/a/1.0.0/mod.ts", | ||
"deno:@scope/b/mod.ts": "https://registry-staging.deno.com/@scope/b/9.0.0/mod.ts" | ||
}, | ||
"deno": { | ||
"@scope/a@^1.0": "@scope/[email protected]", | ||
|
Oops, something went wrong.