Skip to content

Commit

Permalink
Expose modules/exports as public
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Oct 2, 2024
1 parent 71e51d9 commit a119d18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonlight-mod/moonmap",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ export default class Moonmap {
private processors: MappingProcessor[];
private successful: Set<string>;
private getModuleSource?: (id: string) => string;

private modules: Record<string, string>;
private exports: Record<string, Record<string, ModuleExport>>;
private sentModules: Set<string>;

modules: Record<string, string>;
exports: Record<string, Record<string, ModuleExport>>;

elapsed: number;

constructor() {
Expand Down

0 comments on commit a119d18

Please sign in to comment.