In #15, it became clear that it's not obvious how to use this package, and then be able to @import bootstrap less modules in your own less sources. The short of it is:
You will be supplying an --include-path option in your PIPELINE_LESS_ARGUMENTS Django setting.
Those paths and the relative paths in your @imports must agree.
To make this more obvious, I will add a simple example of this on the project README, explaining the above points. The example will probably be around using Bootstrap's variables, as that is (sensibly) what many Bootstrap users need so that a customized style theme properly extends to their own less sources.
This issue is complete when the README is updated with this info.
In #15, it became clear that it's not obvious how to use this package, and then be able to
@import
bootstrap less modules in your own less sources. The short of it is:--include-path
option in yourPIPELINE_LESS_ARGUMENTS
Django setting.@import
s must agree.To make this more obvious, I will add a simple example of this on the project README, explaining the above points. The example will probably be around using Bootstrap's
variables
, as that is (sensibly) what many Bootstrap users need so that a customized style theme properly extends to their own less sources.This issue is complete when the README is updated with this info.