wip
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
export default () => {
|
||||
return `export const five = 5;`;
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
resolve(`export const five = 5;`);
|
||||
}, 500);
|
||||
});
|
||||
};
|
||||
|
@ -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();
|
||||
};
|
||||
|
Reference in New Issue
Block a user