ModuleScopePlugin can't deal with dot directories
Created by: diligiant
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.