Skip to content

Commit

Permalink
Use npm start:coverage in StartServerAfterBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhudec committed May 23, 2024
1 parent d6c6779 commit d775604
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const StartServerAfterBuild = () => {
server.stdin.write('rs\n')
} else {
server = spawn(
"npx nodemon --inspect --ignore 'src/**/__test__/**/*'",
// "npx nodemon --inspect --ignore 'src/**/__test__/**/*'",
"npm start:coverage",
{ stdio: ['pipe', 'inherit', 'inherit'], shell: true }
)
}
Expand Down

0 comments on commit d775604

Please sign in to comment.