Skip to content

Commit

Permalink
Merge pull request #181 from osamhack2021/feature/ci-cd
Browse files Browse the repository at this point in the history
Fix: Add nodemon legacy watch for windows
  • Loading branch information
ntcho authored Oct 16, 2021
2 parents 7aa5f4d + 9702a9b commit ad2f0f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon --watch . app.js"
"start": "npm run start:linux",
"start:linux": "nodemon --watch . app.js",
"start:windows": "nodemon --legacy-watch app.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
Expand Down

0 comments on commit ad2f0f4

Please sign in to comment.