Commit 58b8b807 authored by Mike Greiling's avatar Mike Greiling

properly handle naming for dispatcher route chunks

parent 130b03c2
...@@ -176,8 +176,13 @@ var config = { ...@@ -176,8 +176,13 @@ var config = {
return chunk.name; return chunk.name;
} }
return chunk.mapModules((m) => { return chunk.mapModules((m) => {
var chunkPath = m.request.split('!').pop(); const pagesBase = path.join(ROOT_PATH, 'app/assets/javascripts/pages');
return path.relative(m.context, chunkPath); if (m.resource.indexOf(pagesBase) === 0) {
return path.relative(pagesBase, m.resource)
.replace(/\/index\.[a-z]+$/, '')
.replace(/\//g, '__');
}
return path.relative(m.context, m.resource);
}).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