Skip to content

Commit 3cd8f83

Browse files
authored
chore: stop generating re-export stubs for dist-cjs (#1709)
1 parent 47537af commit 3cd8f83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/compilation/Inliner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = class Inliner {
2020
this.isLib = fs.existsSync(path.join(root, "lib", pkg));
2121
this.isClient = !this.isPackage && !this.isLib;
2222
this.isCore = pkg === "core";
23-
this.reExportStubs = true;
23+
this.reExportStubs = false;
2424
this.subfolder = this.isPackage ? "packages" : this.isLib ? "lib" : "clients";
2525
this.verbose = process.env.DEBUG || process.argv.includes("--debug");
2626

0 commit comments

Comments
 (0)