mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
999cbfb52b
This commit adds new "import.meta.resolve()" API which allows to resolve specifiers relative to the module the API is called in. This API supports resolving using import maps.
34 lines
937 B
TypeScript
34 lines
937 B
TypeScript
import { assertThrows } from "../../../test_util/std/testing/asserts.ts";
|
|
|
|
console.log("import_meta", import.meta.url, import.meta.main);
|
|
|
|
import "./import_meta2.ts";
|
|
|
|
console.log("Resolving ./foo.js", import.meta.resolve("./foo.js"));
|
|
console.log("Resolving bare from import map", import.meta.resolve("bare"));
|
|
console.log(
|
|
"Resolving https://example.com/rewrite from import map",
|
|
import.meta.resolve("https://example.com/rewrite"),
|
|
);
|
|
console.log(
|
|
"Resolving without a value from import map",
|
|
import.meta.resolve(),
|
|
);
|
|
console.log(
|
|
"Resolving 1 from import map",
|
|
import.meta.resolve(1),
|
|
);
|
|
console.log(
|
|
"Resolving null from import map",
|
|
import.meta.resolve(null),
|
|
);
|
|
console.log(
|
|
"Resolving object from import map",
|
|
import.meta.resolve({}),
|
|
);
|
|
assertThrows(() => {
|
|
import.meta.resolve("too", "many", "arguments");
|
|
}, TypeError);
|
|
assertThrows(() => {
|
|
import.meta.resolve("://malformed/url?asdf");
|
|
}, TypeError);
|