Skip to content

Commit 1742216

Browse files
authored
Remove 'cross-spawn' dependency (#8536)
2 parents b333931 + de08f5c commit 1742216

File tree

3 files changed

+8
-120
lines changed

3 files changed

+8
-120
lines changed

package-lock.json

Lines changed: 7 additions & 117 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,10 @@
9595
"@github/copilot-language-server": "1.290.0",
9696
"@microsoft/servicehub-framework": "4.2.99-beta",
9797
"@octokit/rest": "^20.0.1",
98-
"@types/cross-spawn": "6.0.2",
9998
"@vscode/debugprotocol": "1.56.0",
10099
"@vscode/extension-telemetry": "^0.9.0",
101100
"@vscode/js-debug-browsers": "^1.1.0",
102101
"async-file": "2.0.2",
103-
"cross-spawn": "6.0.6",
104102
"execa": "4.0.0",
105103
"fs-extra": "9.1.0",
106104
"http-proxy-agent": "7.0.0",

src/omnisharp/launcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { spawn } from 'cross-spawn';
6+
import { spawn } from 'child_process';
77
import { ChildProcessWithoutNullStreams } from 'child_process';
88

99
import { PlatformInformation } from '../shared/platform';

0 commit comments

Comments
 (0)