From a2cda79cebf00762505de8631c2c1976385b248b Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Thu, 23 Jul 2020 12:45:08 -0700 Subject: [PATCH] Remove reference to npx in luanch config Users should not need to install npx in order to launch the extension. --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d0a9229e7..0ea45df28 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,7 +10,7 @@ "kind": "build", "isDefault": true }, - "command": "npx gulp buildWithoutPackage --verbose", + "command": "npm run build", "options": { "cwd": "extensions/ql-vscode/" },