2020-06-24 16:59:12 +02:00
|
|
|
await import("./single_compile_with_reload_dyn.ts");
|
2020-06-10 16:02:41 +02:00
|
|
|
console.log("1");
|
2020-06-24 16:59:12 +02:00
|
|
|
await import("./single_compile_with_reload_dyn.ts");
|
2020-06-10 16:02:41 +02:00
|
|
|
console.log("2");
|
2021-06-19 15:14:43 +01:00
|
|
|
await new Promise((r) =>
|
|
|
|
new Worker(
|
2023-03-25 10:59:39 +01:00
|
|
|
import.meta.resolve("./single_compile_with_reload_worker.ts"),
|
2021-06-19 15:14:43 +01:00
|
|
|
{ type: "module" },
|
|
|
|
).onmessage = r
|
|
|
|
);
|
|
|
|
console.log("3");
|
|
|
|
await new Promise((r) =>
|
|
|
|
new Worker(
|
2023-03-25 10:59:39 +01:00
|
|
|
import.meta.resolve("./single_compile_with_reload_worker.ts"),
|
2021-06-19 15:14:43 +01:00
|
|
|
{ type: "module" },
|
|
|
|
).onmessage = r
|
|
|
|
);
|
|
|
|
console.log("4");
|