Commit ad097512 authored by Mike Greiling's avatar Mike Greiling

fix deprecation warning present during webpack compiles

parent 7712e34a
...@@ -171,7 +171,7 @@ var config = { ...@@ -171,7 +171,7 @@ var config = {
if (chunk.name) { if (chunk.name) {
return chunk.name; return chunk.name;
} }
return chunk.modules.map((m) => { return chunk.mapModules((m) => {
var chunkPath = m.request.split('!').pop(); var chunkPath = m.request.split('!').pop();
return path.relative(m.context, chunkPath); return path.relative(m.context, chunkPath);
}).join('_'); }).join('_');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment