From 0fb2352639faa8a9b4bcca109ddf4d0d69bec097 Mon Sep 17 00:00:00 2001 From: PriNova Date: Thu, 5 Dec 2024 11:55:23 +0000 Subject: [PATCH] feat(shell): import additional child_process utilities This commit adds imports for `exec`, `os`, `path`, and `promisify` from the `node:child_process`, `node:os`, `node:path`, and `node:util` modules, respectively. These additional utilities will be used to enhance the functionality of the shell command execution in the `vscode/src/commands/context/shell.ts` file. --- vscode/src/commands/context/shell.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vscode/src/commands/context/shell.ts b/vscode/src/commands/context/shell.ts index ffb2f48f65bc..66b1a60a46e5 100644 --- a/vscode/src/commands/context/shell.ts +++ b/vscode/src/commands/context/shell.ts @@ -1,4 +1,7 @@ -import { type ChildProcess, spawn } from 'node:child_process' +import { type ChildProcess, exec, spawn } from 'node:child_process' +import os from 'node:os' +import path from 'node:path' +import { promisify } from 'node:util' import { type ContextItem, ContextItemSource,