var using = require('gulp-using'); // use: .pipe(using({ prefix:'Using', color:'blue' })) | |
// and then | |
// Styles (Global) | |
gulp.task('styles:global', function() { | |
return gulp.src(globScss) | |
.pipe(using({ prefix:'Using', color:'blue' })) | |
... | |
... | |
// so I immediately get if the | |
// other 2cent tip: use global variables for folder names/paths ;) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment