2024-07-25 15:30:28 +10:00
|
|
|
import { assertThrows } from "@std/assert/throws";
|
2024-01-23 23:51:07 +01:00
|
|
|
import "http://localhost:4545/run/import_meta/other.ts";
|
2022-09-19 09:32:21 -05:00
|
|
|
import "./other.ts";
|
2022-07-18 20:05:26 +02:00
|
|
|
|
2024-01-23 23:51:07 +01:00
|
|
|
console.log(
|
|
|
|
"main",
|
|
|
|
import.meta.url,
|
|
|
|
import.meta.main,
|
|
|
|
import.meta.filename,
|
|
|
|
import.meta.dirname,
|
|
|
|
);
|
|
|
|
|
2022-07-18 20:05:26 +02:00
|
|
|
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);
|
2023-12-28 20:37:10 +01:00
|
|
|
console.log(
|
|
|
|
"Resolving npm:cowsay",
|
|
|
|
import.meta.resolve("npm:cowsay"),
|
|
|
|
);
|
|
|
|
console.log(
|
|
|
|
"Resolving npm:cowsay@1",
|
|
|
|
import.meta.resolve("npm:cowsay@1"),
|
|
|
|
);
|
|
|
|
console.log(
|
|
|
|
"Resolving npm:preact from import map",
|
|
|
|
import.meta.resolve("npm:preact"),
|
|
|
|
);
|