From 8d8ed28aea54f6895295f9867d440dbdcf3c93c3 Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Wed, 27 Apr 2022 17:50:46 -0400 Subject: [PATCH] Add necessary dependencies --- extensions/ql-vscode/package.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/ql-vscode/package.json b/extensions/ql-vscode/package.json index 986fbfc91..6aae5c667 100644 --- a/extensions/ql-vscode/package.json +++ b/extensions/ql-vscode/package.json @@ -529,6 +529,10 @@ "command": "codeQLQueryHistory.showEvalLogSummary", "title": "Show Evaluator Log (Summary)" }, + { + "command": "codeQLQueryHistory.scanEvalLog", + "title": "Scan Evaluator Log" + }, { "command": "codeQLQueryHistory.cancel", "title": "Cancel" @@ -742,6 +746,11 @@ "group": "9_qlCommands", "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", "group": "9_qlCommands", @@ -949,6 +958,10 @@ "command": "codeQLQueryHistory.showEvalLogSummary", "when": "false" }, + { + "command": "codeQLQueryHistory.scanEvalLog", + "when": "false" + }, { "command": "codeQLQueryHistory.openQueryDirectory", "when": "false" @@ -1118,6 +1131,7 @@ "d3-graphviz": "^2.6.1", "fs-extra": "^10.0.1", "glob-promise": "^3.4.0", + "immutable": "^4.0.0", "js-yaml": "^3.14.0", "minimist": "~1.2.6", "nanoid": "^3.2.0",