I have a simple gulp task that just prints some .js files. In cmd it prints fine but in Powershell gulp-print is empty. Any pointers on why that is? Here is the gulpfile.js and the outputs.
var gulp = require('gulp');
var gulpprint = require('gulp-print');
gulp.task('print', function() {
gulp.src('./src/**/*.js').pipe(gulpprint());
});

it's not ideal but you can disable colors
gulp --no-colors print
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With