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
Родитель 09c4e7e99b
Коммит a2cda79ceb
1 изменённых файлов: 1 добавлений и 1 удалений

2
.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/"
},