Skip to content

Webpack auto include for EE imports

Clement Ho requested to merge ee-webpack-autoinclude into master

What does this MR do?

Webpack currently auto imports scripts found in /pages/ in CE.

This MR auto imports EE scripts found in /ee/.../pages/. If a page has a CE and EE page script, the EE script is loaded instead.

The performance impact of this MR on the webpack compile time is O(n). This impact is negligible. This is because we override the existing entries rather than creating a new mapping based on the differences between CE and EE entries.

Are there points in the code the reviewer needs to double check?

Make sure everything is 💯

Why was this MR needed?

Enable dynamic imports for EE specific pages

Screenshots (if relevant)

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

https://gitlab.com/gitlab-org/gitlab-ce/issues/41341

Edited by Clement Ho

Merge request reports