make the status of the script independent from the app

This commit is contained in:
daniel31x13 2024-03-27 12:08:19 -04:00
parent a6d018fb53
commit 58b6f7339c

View File

@ -13,7 +13,7 @@
"dev": "concurrently -k -P \"next dev {@}\" \"yarn worker:dev\" --", "dev": "concurrently -k -P \"next dev {@}\" \"yarn worker:dev\" --",
"worker:dev": "nodemon --skip-project scripts/worker.ts", "worker:dev": "nodemon --skip-project scripts/worker.ts",
"worker:prod": "ts-node --transpile-only --skip-project scripts/worker.ts", "worker:prod": "ts-node --transpile-only --skip-project scripts/worker.ts",
"start": "concurrently -k -P \"next start {@}\" \"yarn worker:prod\" --", "start": "concurrently -P \"next start {@}\" \"yarn worker:prod\" --",
"build": "next build", "build": "next build",
"lint": "next lint", "lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"" "format": "prettier --write \"**/*.{ts,tsx,js,json,md}\""