You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
With the release of [email protected] a new flag was created called experimentalCodeSplitting. This allows for a new code splitting mechanism that allows rollup to accept multiple entry points. It appears that this plugin is currently not compatible with this flag. I think it is a fair assumption many rollup users depend on this plugin.
Currently resolveId is used to gather the full path of the entry point file and it is then used to compare against the transform function. It appears this is a simple update to allow for arrays or strings. Would you be amenable to accepting a PR to fix this issue.
With the release of
[email protected]
a new flag was created calledexperimentalCodeSplitting
. This allows for a new code splitting mechanism that allows rollup to accept multiple entry points. It appears that this plugin is currently not compatible with this flag. I think it is a fair assumption many rollup users depend on this plugin.Currently resolveId is used to gather the full path of the entry point file and it is then used to compare against the transform function. It appears this is a simple update to allow for arrays or strings. Would you be amenable to accepting a PR to fix this issue.
Path Resolution of a single filePath
https://github.com/rollup/rollup-plugin-commonjs/blob/master/src/index.js#L136
Comparison
https://github.com/rollup/rollup-plugin-commonjs/blob/master/src/index.js#L185
The text was updated successfully, but these errors were encountered: