Skip to content

Commit

Permalink
make sure unicode stream emits files again
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Feb 4, 2022
1 parent e4cce8c commit 4f62f9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/hygiene.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ function hygiene(some, linting = true) {
errorCount++;
}
});

this.emit('data', file);
});

const indentation = es.through(function (file) {
Expand Down Expand Up @@ -167,7 +169,7 @@ function hygiene(some, linting = true) {

if (linting) {
streams.push(
input
result
.pipe(filter(eslintFilter))
.pipe(
gulpeslint({
Expand Down

0 comments on commit 4f62f9b

Please sign in to comment.