From 2d2ef4374fc69d21c58fbde96d09869f1f003ace Mon Sep 17 00:00:00 2001 From: CrypticC3s4r <27031384+CrypticC3s4r@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:09:21 +0200 Subject: [PATCH] crypticc3s4r:introducing-nodemon-legacy-watch-in-workers --- apps/workers/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/workers/package.json b/apps/workers/package.json index bbd5b17d..d7802dee 100644 --- a/apps/workers/package.json +++ b/apps/workers/package.json @@ -43,10 +43,11 @@ "@hoarder/prettier-config": "workspace:^0.1.0", "@types/dompurify": "^3.0.5", "@types/jsdom": "^21.1.6", - "@types/metascraper": "^5.14.3" + "@types/metascraper": "^5.14.3", + "nodemon": "^3.1.7" }, "scripts": { - "start": "tsx watch index.ts", + "start": "nodemon --watch . --ext ts --legacy-watch --exec tsx index.ts", "start:prod": "tsx index.ts", "lint": "eslint .", "format": "prettier . --ignore-path ../../.prettierignore",