Merge pull request #543 from linkwarden/dev

make the status of the script independent from the app
This commit is contained in:
Daniel 2024-03-27 19:39:09 +03:30 committed by GitHub
commit 87eb2471ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@
"dev": "concurrently -k -P \"next dev {@}\" \"yarn worker:dev\" --",
"worker:dev": "nodemon --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",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\""