Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gulp-print in Powershell is empty

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());
});

enter image description here

like image 869
howardlo Avatar asked Jan 27 '26 16:01

howardlo


1 Answers

it's not ideal but you can disable colors

gulp --no-colors print
like image 54
howardlo Avatar answered Jan 30 '26 18:01

howardlo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!