diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2017-08-25 17:24:15 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2017-08-25 17:24:15 +0000 |
commit | f0f237b77104e906bb35492de686ba9968f392f5 (patch) | |
tree | 4946e3d6b188a77c85dc3f0e5b8615b93496b5db /config/webpack.config.js | |
parent | 1c39c76a28447f6150ca7d67779a52359cab2173 (diff) | |
parent | ad097512c9eb918e1fe83f502286fb8fed31ff50 (diff) | |
download | gitlab-ce-f0f237b77104e906bb35492de686ba9968f392f5.tar.gz |
Merge branch 'fix-deprecation-warning' into 'master'
Fix deprecation warning when running webpack
See merge request !13656
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r-- | config/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 8aa938d538e..7d63a42d7d8 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -170,7 +170,7 @@ var config = { if (chunk.name) { return chunk.name; } - return chunk.modules.map((m) => { + return chunk.mapModules((m) => { var chunkPath = m.request.split('!').pop(); return path.relative(m.context, chunkPath); }).join('_'); |