Skip to content

Commit

Permalink
y
Browse files Browse the repository at this point in the history
  • Loading branch information
Delusoire committed Aug 29, 2024
1 parent 74a3d3d commit 0d62553
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions modules/stdlib/mix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Object.defineProperty = function (obj, prop, descriptor) {
export let transformer: Transformer;
export default async function (t: Transformer) {
transformer = t;
await import("./src/expose/index.js");
await import("./src/registers/index.js");
await Promise.all([
import("./src/expose/index.ts"),
import("./src/registers/index.ts"),
import("./src/wpunpk.mix.ts"),
]);
}
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/stdlib/src/wpunpk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { assertEquals } from "/hooks/std/assert.ts";

import { Subject } from "https://esm.sh/rxjs";

import { type Chunk, type Module, type Modules, type WebpackRequire, webpackRequire } from "./wpunkp.mix.ts";
import { type Chunk, type Module, type Modules, webpackRequire } from "./wpunpk.mix.ts";

type ChunkModulesPair = [Chunk, Modules];
const chunkLoadedSubject = new Subject<ChunkModulesPair>();
Expand Down

0 comments on commit 0d62553

Please sign in to comment.