the readme specifies:
|
| conditionNames | ["node"] | A list of exports field condition names | |
however:
|
conditionNames: new Set(options.conditionNames), |
seems here we don't actually default the condition names array to anything, so later on the various plugins receive and empty set.
should it possibly be this instead:
conditionNames: new Set(options.conditionNames || ['node']),