Add necessary dependencies

This commit is contained in:
Dave Bartolomeo
2022-04-27 17:50:46 -04:00
parent 7932de3b7d
commit 8d8ed28aea

View File

@@ -529,6 +529,10 @@
"command": "codeQLQueryHistory.showEvalLogSummary", "command": "codeQLQueryHistory.showEvalLogSummary",
"title": "Show Evaluator Log (Summary)" "title": "Show Evaluator Log (Summary)"
}, },
{
"command": "codeQLQueryHistory.scanEvalLog",
"title": "Scan Evaluator Log"
},
{ {
"command": "codeQLQueryHistory.cancel", "command": "codeQLQueryHistory.cancel",
"title": "Cancel" "title": "Cancel"
@@ -742,6 +746,11 @@
"group": "9_qlCommands", "group": "9_qlCommands",
"when": "codeql.supportsEvalLog && (viewItem == rawResultsItem || viewItem == interpretedResultsItem || viewItem == cancelledResultsItem)" "when": "codeql.supportsEvalLog && (viewItem == rawResultsItem || viewItem == interpretedResultsItem || viewItem == cancelledResultsItem)"
}, },
{
"command": "codeQLQueryHistory.scanEvalLog",
"group": "9_qlCommands",
"when": "codeql.supportsEvalLog && (viewItem == rawResultsItem || viewItem == interpretedResultsItem || viewItem == cancelledResultsItem)"
},
{ {
"command": "codeQLQueryHistory.showQueryText", "command": "codeQLQueryHistory.showQueryText",
"group": "9_qlCommands", "group": "9_qlCommands",
@@ -949,6 +958,10 @@
"command": "codeQLQueryHistory.showEvalLogSummary", "command": "codeQLQueryHistory.showEvalLogSummary",
"when": "false" "when": "false"
}, },
{
"command": "codeQLQueryHistory.scanEvalLog",
"when": "false"
},
{ {
"command": "codeQLQueryHistory.openQueryDirectory", "command": "codeQLQueryHistory.openQueryDirectory",
"when": "false" "when": "false"
@@ -1118,6 +1131,7 @@
"d3-graphviz": "^2.6.1", "d3-graphviz": "^2.6.1",
"fs-extra": "^10.0.1", "fs-extra": "^10.0.1",
"glob-promise": "^3.4.0", "glob-promise": "^3.4.0",
"immutable": "^4.0.0",
"js-yaml": "^3.14.0", "js-yaml": "^3.14.0",
"minimist": "~1.2.6", "minimist": "~1.2.6",
"nanoid": "^3.2.0", "nanoid": "^3.2.0",