Merge pull request #14698 from overleaf/bg-sg-use-node-watch

[misc] replace nodemon with "node --watch"

GitOrigin-RevId: 8b34861887b39ffe1c64d9e4679f8ebef09302bd
This commit is contained in:
Jakob Ackermann
2023-10-02 16:30:34 +02:00
committed by Copybot
parent 843b4f3940
commit efb36b7193
52 changed files with 45 additions and 534 deletions

View File

@@ -9,7 +9,7 @@
"test:unit:run": "mocha --recursive --reporter spec $@ test/unit/js",
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
"start": "node $NODE_APP_OPTIONS app.js",
"nodemon": "nodemon --config nodemon.json",
"nodemon": "node --watch $NODE_APP_OPTIONS app.js",
"lint": "eslint --max-warnings 0 --format unix .",
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",