Skip to content

Commit

Permalink
Fix show output of the start command before task runs
Browse files Browse the repository at this point in the history
  • Loading branch information
sahilrajput03 committed Aug 19, 2022
1 parent b233ac4 commit 5798120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ task('watch', 'Start the file watcher')
}
if (taskConfig.start) {
try {
execSync(taskConfig.start, { stdio: 'pipe' })
execSync(taskConfig.start, { stdio: 'inherit' })
} catch (error) {
console.log("Faile to execute 'start' script:", taskConfig.start)
console.error(error)
Expand Down

0 comments on commit 5798120

Please sign in to comment.