Open benjdl opened 8 years ago
Hey @benjdl,
I'll look into this as soon as possible, as I don't use Laravel anymore. Thanks for reporting. :)
I had the same issue and solved it by adding:
exclude: []
as an option and updating the gulp_src as follows:
var gulp_src = [options.baseDir + options.src + options.search];
for (var files of options.exclude) {
gulp_src.push('!' + options.baseDir + options.src + files);
}
Then you can just do this in your gulpfile for example:
mix.jade({
exclude: ['mixins/*.jade']
});
This can probably be improved, but it worked out for me.
@Qakulukiam Cool! @benjdl Can you check if this works for you? I can't find the time to setup Laravel etc. so I can't really test this.
@Qakulukiam @CREEATION Works like a charm! ;)
Hello, thanks for your great plugin!
It would be great if we could exclude a jade file from the pipe, I mean for example the mixins files which didn't have to be compiled into a blade file.