Skip to content

Commit

Permalink
fix: fix erroneous call to reporter.debugError (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
amcgee committed May 19, 2020
1 parent d8925fa commit 0b1840a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/lib/compiler/compileApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const watchFiles = ({ inputDir, outputDir, processFileCallback, watch }) => {
.on('change', compileFile)
.on('unlink', removeFile)
.on('error', error => {
reporter.debugError('Chokidar error:', error)
reporter.debugErr('Chokidar error:', error)
reject('Chokidar error!')
})

Expand Down

0 comments on commit 0b1840a

Please sign in to comment.