Skip to content

Commit 0a395e3

Browse files
committed
Remove 'vscode-uri' dependency
1 parent b5e8784 commit 0a395e3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

package-lock.json

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,7 @@
170170
"umd-compat-loader": "2.1.2",
171171
"unzipper": "0.10.11",
172172
"vscode-oniguruma": "^1.6.1",
173-
"vscode-textmate": "^6.0.0",
174-
"vscode-uri": "^3.0.7"
173+
"vscode-textmate": "^6.0.0"
175174
},
176175
"runtimeDependencies": [
177176
{

test/omnisharp/omnisharpUnitTests/options.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import * as vscode from 'vscode';
77
import { jest, describe, test, expect, beforeEach } from '@jest/globals';
8-
import { URI } from 'vscode-uri';
98
import * as path from 'path';
109
import { commonOptions, omnisharpOptions } from '../../../src/shared/options';
1110
import { getWorkspaceConfiguration } from '../../fakes';
@@ -85,7 +84,7 @@ describe('Options tests', () => {
8584
});
8685

8786
test('"omnisharp.defaultLaunchSolution" is used if set', async () => {
88-
const workspaceFolderUri = URI.file('/Test');
87+
const workspaceFolderUri = vscode.Uri.file('/Test');
8988
jest.replaceProperty(vscode.workspace, 'workspaceFolders', [
9089
{ index: 0, name: 'Test', uri: workspaceFolderUri },
9190
]);

0 commit comments

Comments
 (0)