Skip to content

Commit

Permalink
feat(shell): import additional child_process utilities
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
PriNova committed Dec 5, 2024
1 parent 8130778 commit 0fb2352
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vscode/src/commands/context/shell.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 0fb2352

Please sign in to comment.