Skip to content

Commit a119d18

Browse files
committed
Expose modules/exports as public
1 parent 71e51d9 commit a119d18

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@moonlight-mod/moonmap",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ export default class Moonmap {
6161
private processors: MappingProcessor[];
6262
private successful: Set<string>;
6363
private getModuleSource?: (id: string) => string;
64-
65-
private modules: Record<string, string>;
66-
private exports: Record<string, Record<string, ModuleExport>>;
6764
private sentModules: Set<string>;
6865

66+
modules: Record<string, string>;
67+
exports: Record<string, Record<string, ModuleExport>>;
68+
6969
elapsed: number;
7070

7171
constructor() {

0 commit comments

Comments
 (0)