mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
20 lines
476 B
JavaScript
20 lines
476 B
JavaScript
const importsDir = Deno.readDirSync(
|
|
Deno.realPathSync("./run/top_level_await/tla2"),
|
|
);
|
|
|
|
const resolvedPaths = [];
|
|
|
|
for (const { name } of importsDir) {
|
|
const filePath = Deno.realPathSync(`./run/top_level_await/tla2/${name}`);
|
|
resolvedPaths.push(filePath);
|
|
}
|
|
|
|
resolvedPaths.sort();
|
|
|
|
for (const filePath of resolvedPaths) {
|
|
console.log("loading", filePath);
|
|
const mod = await import(`file://${filePath}`);
|
|
console.log("loaded", mod);
|
|
}
|
|
|
|
console.log("all loaded");
|