What's the easiest way to make Bootstrap's Less assets available to the rest of my Less when pulling it in with Bower?
The first thing I've gotten working is to actually publish the assets from the bower_components directory before compiling, something like this:
elixir(function(mix) {
mix.publish('bootstrap/less/', 'resources/assets/less/vendor/bootstrap/')
.less('application.less');
});
...and then in application.less:
@import "vendor/bootstrap/bootstrap.less";
...but this feels truly horrifying.
The other option is something like this in my application.less file:
@import "../../vendor/bower_components/bootstrap/less/bootstrap.less";
...but this feels equally silly.
What's the actual recommended way to import a less file that's pulled in with Bower? Help out an Elixir n00b :)