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
fix: Stop bundling dependencies with slashes (#1634)
External dependencies should not be bundled, because they are already
referenced via "dependencies" in package.json.
Before this patch, external modules with slashes in their identifier
were bundled anyway because there is no directory with that name in the
`node_modules` directory (which in turn prevents them from being added
to the `externals` object in the webpack config).
This is fixed by looking up dependencies in `package.json` instead.
0 commit comments