-
Notifications
You must be signed in to change notification settings - Fork 522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steal should de-duplicate less imports. #1394
Comments
A proposed solution to this that might minimize the effort would be build a "global style sheet" in memory and use less to transpile it to CSS. |
From a technical perspective it's somewhat difficult to know what is "global". You need to inject this stylesheet just before the |
Proposed SolutionFor each bundle (including the main bundle), create a special in-memory less module. For each less module that is imported in the tree, recompile the special module appending the imported module. Technical hurdlesKnowing what tree a particular module belongs to is a little bit tricky. Some code exists within done-ssr that attempts to do something similar, so we should reuse that if it will be helpful. This might necessitate a new feature in steal first. |
Possibly relevant test case for multiple css import causing problems: Technically any shared less file - like a The problem is still possibly important to solve for another case though - when you have a component that's reused and imported multiple times. Ideally the less for that component should only be inserted once. |
We've noticed that too, variables.less or buttons.less get loaded multiple times. Is this ticket for a production build or develop? This could improve our loading times when developing. |
@jeroencornelissen This would be for both. |
Issue moved to stealjs/steal-less #72 via ZenHub |
How often can you reproduce it?
Description:
Our less plugin for steal uses the less engine to compile less to css. The problem occurs when you mix global styles with component-specific or modlet styles that import that global style.
When importing the same less file (like a global style) in multiple component less files, the rules of the global file are duplicated. I imagine this is due to steal and the less engine treating each less file in isolation.
The resolution for this is to have a global style sheet that imports all other style sheets. This creates a single entry point for the steal/less to create CSS sans any duplication. The problem with /this/ fix is that it breaks the idea of isolated self-contained modlets/components. The other problem with this approach is probably bundle sizes as we are including more styles than required.
Steps to reproduce:
buttons.less
file that includes the all the applications styles for button elements.@import path/to/buttons.less
.Expected results:
The styles from
buttons.less
would only be included once.Actual results:
Each modlet style sheet includes the styles from
buttons.less
.Environment:
The text was updated successfully, but these errors were encountered: