From 3d20875396a779fc7047ac826c97775571d997e5 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Mon, 18 Dec 2023 04:03:50 +0000 Subject: [PATCH] fix: use "denoTasks" type for task-sidebar commands (#1013) --- client/src/tasks_sidebar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/tasks_sidebar.ts b/client/src/tasks_sidebar.ts index 983a57e3..b6e891c9 100644 --- a/client/src/tasks_sidebar.ts +++ b/client/src/tasks_sidebar.ts @@ -118,7 +118,7 @@ function buildDenoConfigTask( ): Task { const execution = new ProcessExecution(process, ["task", name]); const task = new Task( - { type: "deno", name, command, sourceUri }, + { type: "denoTasks", name, command, sourceUri }, scope, name, "deno task",