From 2ea87c13fcdca4d2b91c118cd18b853049efebbd Mon Sep 17 00:00:00 2001 From: Rob Anderson Date: Thu, 17 Aug 2023 19:20:10 -0400 Subject: [PATCH] launch via npm to pick up .env file (#66) --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c912498..6c4a4c9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -26,8 +26,8 @@ "type": "node", "request": "launch", "name": "Launch Probot", - "runtimeExecutable": "probot", - "runtimeArgs": ["run", "./app.js"], + "runtimeExecutable": "npm", + "runtimeArgs": ["start"], "console": "integratedTerminal", "cwd": "${workspaceRoot}/", }