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
Some webpack modules (globalize-webpack-plugin is one) create a dot directory to hold temporary files. This breaks ModuleScopePlugin as it only tests for '.' prefix (requestRelative[0] === '.') instead of matching '../' (requestRelative.startsWith ('../')).
I'll submit a PR if that's ok.
The text was updated successfully, but these errors were encountered:
Some webpack modules (globalize-webpack-plugin is one) create a dot directory to hold temporary files. This breaks ModuleScopePlugin as it only tests for '.' prefix (
requestRelative[0] === '.'
) instead of matching '../' (requestRelative.startsWith ('../')
).I'll submit a PR if that's ok.
The text was updated successfully, but these errors were encountered: