Skip to content

Commit b942d50

Browse files
authored
fix: exports is object (#276)
1 parent 941e818 commit b942d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugin/common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export async function getInlinePackageEntryPath(
7373
} else if (typeof pkgJson.exports === "string") {
7474
entryFilePath = pkgJson.exports;
7575
} else if (pkgJson.exports?.["."]) {
76-
entryFilePath = pkgJson.exports["."];
76+
entryFilePath = pkgJson.exports["."].require;
7777
}
7878
}
7979
if (!entryFilePath && pkgJson.main) {

0 commit comments

Comments
 (0)