So I started with Laravel 5, Elixir and Bower and followed the guide published on laravel-news.
I managed to compile all scripts but Gulp won't compile the Bootstrap Sass files even if it says Finished 'sass' after 228 ms
.
This is what I have in my gulpfile atm:
var paths = {
'bootstrap': './vendor/bower_components/bootstrap-sass-official/assets/'
}
elixir(function(mix) {
mix.sass("style.scss", 'public/css/', {includePaths: [paths.bootstrap + 'stylesheets/']})
});
But when I run gulp there is no css
directory with the css file in it.
What could the problem be? I really don't know what's the problem.
I'm running on Mac OSX (10.10), MAMP and updated all apps, dependencies etc.
As stated in this stackoverflow post I checked if Elixir is the latest version and it is (*
and no specific version).
Is there a way to debug Elixir? I have not found anything about this.
Solution posted in this answer