Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 20, 2019
1 parent ebb95cb commit 4f5c48c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/exec.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ require('./utils.js')
const { exec } = require('gulp-execa')

module.exports.default = async () => {
await exec('npm --version', { verbose: true })
await exec('npm --version')
}
2 changes: 1 addition & 1 deletion examples/task.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ require('./utils.js')

const { task } = require('gulp-execa')

module.exports.default = task('npm --version', { verbose: true })
module.exports.default = task('npm --version')

0 comments on commit 4f5c48c

Please sign in to comment.