Dave Welch
Dave Welch
@MatthewHerbst FYI - whilst this is being implemented I made a workaround for this using gulp-shell ``` gulp.task('php-lint', function () { return gulp.src('theme/*.php', {read: false}) .pipe(plumber({ errorHandler: handleError } ))...
Hi @MatthewHerbst, @wayneashleyberry, I was having the same issue - it's a php.ini setting that toggles the syntax error messages with line info etc. `display_errors = On` Also worth noting...
Ah, may have been premature sharing my findings here, sorry. This setting fixed the output for running `php -l file.php` straight off the command line, but like you, it's not...
This is working for me now - I had to set `display_errors = stderr` in php.ini, here's the gulp task: ``` gulp.task('phplint', function() { phplint('theme/*.php', {limit: 10, stdout: false, stderr:...
Also having this issue. When using Gulp to process several CSS files (after all other processing), the media query extraction is compounding into the subsequent files - like a buffer...
I had the same issues as above - managed to fix them by 1. using the altitude + azimuth method rather than system clock method 2. removing the 'isForDark', 'isForLight',...
Hey! Was having the same issue, but on a folder of only 5 SVGs - debugged it by moving the src path from /icons/**/*.svg to an array of specific items...