This commit is contained in:
Dylan Pizzo
2025-02-25 20:13:55 -08:00
parent bd1ef4a08c
commit 5fb6acbb41
8 changed files with 14 additions and 59 deletions

View File

@ -1,3 +1,7 @@
export default () => {
return `export const five = 5;`;
return new Promise((resolve) => {
setTimeout(() => {
resolve(`export const five = 5;`);
}, 500);
});
};

View File

@ -1,4 +1,4 @@
export default async (context: any) => {
const { five } = await context.import("./somethingEarly.ts");
const { five } = await context.import("./somethingEarly.out");
return five.toString();
};