You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although lightning has a dependency on bootstrap, there should be no compile time dependency. For example, right now, we depend on button-type mixin and so bootstrap needs to be a part of the build. Further, since bootstrap is imported, compiled css also contains all of bootstrap code.
Should we only import mixins?
Is is ok to compile the whole thing?
Should we stub/'polyfill' the required mixins?
The text was updated successfully, but these errors were encountered:
It doesn't seem right to compile the whole thing as it just repeats the bootstrap code. Importing only mixins looks fine but can't a mixin depend on some other bootstrap code and therein creating a dependency chain?
Although lightning has a dependency on bootstrap, there should be no compile time dependency. For example, right now, we depend on
button-type
mixin and so bootstrap needs to be a part of the build. Further, since bootstrap is imported, compiled css also contains all of bootstrap code.Should we only import mixins?
Is is ok to compile the whole thing?
Should we stub/'polyfill' the required mixins?
The text was updated successfully, but these errors were encountered: