Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: handle __proto__ exports name in CJS/AMD/UMD #16015

Merged
merged 4 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add test for export ... from
  • Loading branch information
nicolo-ribaudo committed Oct 13, 2023
commit 7dee9517ac18fd6886b988310bb17969049a2fe4
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { __proto__ } from "xyz";
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"use strict";

Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "__proto__", {
enumerable: true,
get: function () {
return _xyz.__proto__;
}
});
var _xyz = require("xyz");