-
-
Notifications
You must be signed in to change notification settings - Fork 604
Closed
Labels
Description
- Rollup Plugin Name: @rollup/plugin-node-resolve
- Rollup Plugin Version: 15.0.2
- Rollup Version: 3.7.5
- Operating System (or Browser): MacOS 13.3 Ventura
- Node Version: 18.5.0
- Link to reproduction (
⚠️ read below): https://stackblitz.com/edit/rollup-repro-t8bmex
Expected Behavior
node packages/app/src/main.js
works fine:
Built by vite is also works, because vite use self vite:resolve plugin:
pnpm -F app build:vite
:
Rollup should build without warnings.
Actual Behavior
But rollup can't resolve:
Additional Information
This issue is found when I test package.exports field:
{
"name": "utils",
"type": "module",
"exports": {
"./a/*/c": "./abc.js"
}
}
robbiespeed