We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gulp.task('style:build', function () { gulp.src(path.src.style) .pipe(sourcemaps.init()) .pipe(sass({
includePaths: ['src/style/'], outputStyle: 'compressed', sourceMap: true, errLogToConsole: true })) .pipe(prefixer()) .pipe(cssmin()) .pipe(sourcemaps.write()) .pipe(gulp.dest(path.build.css)) .pipe(reload({stream: true}));
});
The text was updated successfully, but these errors were encountered:
Hi, are you asking how to include that src/style/ path along with the node-bourbon paths?
src/style/
If so, you could use the with method (docs):
with
includePaths: require('node-bourbon').with('src/style/'),
Behind the scenes, it is simply calling concat on node-bourbon's includePaths array.
concat
includePaths
Sorry, something went wrong.
No branches or pull requests
gulp.task('style:build', function () {
gulp.src(path.src.style)
.pipe(sourcemaps.init())
.pipe(sass({
});
The text was updated successfully, but these errors were encountered: