skip to Main Content

Nodemon not restarting on file change – Docker

"scripts": { "start": "npm run prod", "build": "npm-run-all clean transpile", "server": "node ./dist/bin/www", "dev": "npm run lint && NODE_ENV=development nodemon --inspect=notifications:9236 --exec babel-node bin/www", "prod": "NODE_ENV=production npm-run-all build server", "transpile": "babel ./ --out-dir dist", "lint": "eslint '*.js' ", "lint:watch": "watch…

VIEW QUESTION
Back To Top
Search