From ad4137499b7d93ce38eac4b9c263493fdab1c5a1 Mon Sep 17 00:00:00 2001 From: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> Date: Fri, 30 Aug 2024 19:03:47 +0300 Subject: [PATCH] build: Fix `cli` nodemon config (#10628) --- packages/cli/nodemon.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/nodemon.json b/packages/cli/nodemon.json index 393762d234..ee2f85fbea 100644 --- a/packages/cli/nodemon.json +++ b/packages/cli/nodemon.json @@ -1,6 +1,6 @@ { "ignore": ["**/*.spec.ts", ".git", "node_modules"], - "watch": ["commands", "index.ts", "src"], + "watch": ["dist"], "exec": "npm start", - "ext": "ts" + "ext": "js" }