diff --git a/.vscode/launch.json b/.vscode/launch.json index c3b70b7f0..de065d110 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,7 +4,11 @@ { "type": "node", "request": "attach", - "name": "Attach by Process ID", + "name": "Attach" + }, { + "type": "node", + "request": "attach", + "name": "Attach by process ID", "processId": "${command:PickProcess}" } ] diff --git a/package.json b/package.json index 895b24309..915f7702b 100644 --- a/package.json +++ b/package.json @@ -82,6 +82,7 @@ "scripts": { "test": "nodemon -q services_tests.js -w services", "dbtest": "nodemon -q db_tests.js -w services/db/tests", - "lint": "eslint ./ --cache --ignore-pattern .gitignore" + "lint": "eslint ./ --cache --ignore-pattern .gitignore", + "services": "node --inspect ./node_modules/gulp/bin/gulp.js services" } }