Skip to content

Commit

Permalink
Add some options
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 20, 2019
1 parent d0a62f0 commit 17cc7d9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,20 @@ module.exports.check = task('npm audit && npm outdated')
// Correct
module.exports.check = series(task('npm audit'), task('npm outdated'))
```

# Options

`options` is an optional object with the following properties.

### echo

_Type_: `boolean`<br> _Default_: same as [`verbose`](#version)

Whether the `command` should be printed on the console.

### verbose

_Type_: `boolean`<br> _Default_: `true`
[in CI](https://github.com/watson/is-ci), `false` otherwise.

Whether the `command` and its output should be printed on the console.

0 comments on commit 17cc7d9

Please sign in to comment.