Remove reference to npx in luanch config

Users should not need to install npx in order to launch
the extension.
This commit is contained in:
Andrew Eisenberg
2020-07-23 12:45:08 -07:00
parent 09c4e7e99b
commit a2cda79ceb

2
.vscode/tasks.json vendored
View File

@@ -10,7 +10,7 @@
"kind": "build",
"isDefault": true
},
"command": "npx gulp buildWithoutPackage --verbose",
"command": "npm run build",
"options": {
"cwd": "extensions/ql-vscode/"
},