@sokra this change somewhat break the logic,
previously we have two config like
/a/b/node_modules/a/b/file.js
/a/b/file.js
seems like the context will also change based on the caller as well,
so those two file generate the same relative path after the stringifyRequest logic in the utils
so those two config all output as
./file.js
which break the previous logic
https://github.com/webpack/bundle-loader/commit/2a25922f6c32248337f2854db7f085c2c4ab4cb3
@sokra this change somewhat break the logic, previously we have two config like
/a/b/node_modules/a/b/file.js
/a/b/file.js
seems like the context will also change based on the caller as well, so those two file generate the same relative path after thestringifyRequest
logic in the utilsso those two config all output as
./file.js
which break the previous logic