mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -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.
13 lines
230 B
JSON
13 lines
230 B
JSON
{
|
|
"name": "@denotest/conditional-exports",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"node": "./good.cjs",
|
|
"require": "./bad.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./*": "./*"
|
|
}
|
|
}
|