fix: update dev:auto script to correctly run build:dev with nodemon

This commit is contained in:
himanshu8443
2025-07-23 13:33:46 +05:30
parent 5b6436353c
commit b21d79cf46

View File

@@ -19,7 +19,7 @@
"dev:build": "npm run build && npm run dev", "dev:build": "npm run build && npm run dev",
"watch": "nodemon", "watch": "nodemon",
"watch:dev": "nodemon --watch providers --ext ts --exec \"npm run build\" & npm run dev", "watch:dev": "nodemon --watch providers --ext ts --exec \"npm run build\" & npm run dev",
"dev:auto": "concurrently \"npm run watch\" \"npm run dev\"", "dev:auto": "concurrently \"nodemon --watch providers --ext ts --exec \\\"npm run build:dev\\\"\" \"npm run dev\"",
"auto": "node auto-dev.js", "auto": "node auto-dev.js",
"start": "npm run build && npm run dev" "start": "npm run build && npm run dev"
}, },