Is it possible to remove empty lines in files using `gulp-replace`? I've tried this, but it didn't work: ``` js .pipe(replace(/^\s*$/, '', { skipBinary: true })) ``` Thanks.