I'm struggling to get gulp to correctly compile bourbon-neat sass files. Bourbon-neat is installed (locally, as are the rest of the gulp-sass related modules), @import 'neat' is added to my main site scss file and my gulp.js file includes the following lines:
var gulp = require('gulp'),
sass = require('gulp-sass'),
neat = require('bourbon-neat').includePaths;
and
gulp.task('css', function() {
.pipe(sass({
includePaths: neat
}))
}
But for some reason the only Neat mixin that's being compiled is box-sizing.scss. So the @import 'neat' is working but for just one of the 23 mixins. Any idea why?