mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
9be8dce0c7
Fixes #25777. We were missing the "node" condition, so we were resolving to the wrong conditional export, causing our analysis to be incorrect.
7 lines
No EOL
264 B
JavaScript
7 lines
No EOL
264 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
const pkg = require("@denotest/conditional-exports-node");
|
|
|
|
Object.keys(pkg).forEach(function (k) {
|
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = pkg[k];
|
|
}); |