From 9207dbd12bc70b568d0125efb4ee229044449fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Sat, 26 Dec 2020 21:09:15 +0100 Subject: [PATCH] fix: dev mode with inspect script should run FE and BE at the same time --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 334a7eb..63a3801 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "deploy:firebase": "npm run build:firebase:hosting && firebase deploy", "start": "npm run build && node lib/index.js", "start:dev": "concurrently \"npm run build:dev\" \"NODE_ENV=development PORT=3000 nodemon lib/index.js\"", - "start:dev:inspect": "npm run build:dev && NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js", + "start:dev:inspect": "concurrently \"npm run build:dev\" \"NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js\"", "start:dev:firebase": "concurrently \"npm run build:firebase:hosting:dev\" \"NODE_ENV=development firebase emulators:start\"", "test": "jest" },