Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 15, 2019
1 parent 042593b commit 7ff742e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stream/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ export const getDefaultOpts = function({ opts: { result = 'replace' } = {} }) {
return {
// This is too verbose if done on each iteration, even on CI
verbose: false,
// We use `through2-concurrent` because `through2` processes files serially
// The default is 16 which is too low
// We use `through2-concurrent` because `through2` processes files serially.
// The default is 16 which is too low.
maxConcurrency: 100,
// What to do with the result. Either 'save' or 'replace'
// What to do with the result. Either 'save' or 'replace'.
result: 'replace',
// With `result: 'replace'` which stream to use: `stdout`, `stderr` or `all`
from: 'stdout',
Expand Down

0 comments on commit 7ff742e

Please sign in to comment.