Skip to content

Commit f21e69a

Browse files
authored
Move to @vscode/lsif-protocol (#182)
1 parent 6f1493b commit f21e69a

File tree

6 files changed

+23
-33
lines changed

6 files changed

+23
-33
lines changed

language-service/package-lock.json

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

language-service/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@vscode/lsif-language-service",
33
"description": "LSIF based language services",
44
"private": true,
5-
"version": "0.1.0",
5+
"version": "0.1.0-pre.1",
66
"author": "Microsoft Corporation",
77
"license": "MIT",
88
"repository": {
@@ -24,7 +24,7 @@
2424
"dependencies": {
2525
"vscode-uri": "^3.0.8",
2626
"semver": "^7.6.2",
27-
"lsif-protocol": "0.6.0-next.7"
27+
"@vscode/lsif-protocol": "0.6.0-next.8"
2828
},
2929
"devDependencies": {
3030
"@types/semver": "^7.5.7",

language-service/src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ import { UriTransformer, Database, noopTransformer } from './database';
77
import { JsonStore } from './jsonStore';
88
import { FileType, DocumentInfo, FileStat } from './files';
99

10-
export * from 'lsif-protocol';
10+
export * from '@vscode/lsif-protocol';
1111
export { UriTransformer, noopTransformer, Database, JsonStore, FileType, DocumentInfo, FileStat };

language-service/src/database.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
import { URI } from 'vscode-uri';
6-
import { Range, Id, types } from 'lsif-protocol';
6+
import { Range, Id, types } from '@vscode/lsif-protocol';
77

88
import { FileType, FileSystem, DocumentInfo, FileStat } from './files';
99

language-service/src/files.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* ------------------------------------------------------------------------------------------ */
55
import * as path from 'path';
66

7-
import { Id } from 'lsif-protocol';
7+
import { Id } from '@vscode/lsif-protocol';
88

99
const ctime = Date.now();
1010
const mtime = Date.now();

language-service/src/jsonStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
TypeDefinitionResult, HoverResult, ReferenceResult, ImplementationResult, Edge, RangeBasedDocumentSymbol, DeclarationResult,
1515
ElementTypes, VertexLabels, EdgeLabels, ItemEdgeProperties, EventScope, EventKind, ProjectEvent, Moniker as PMoniker, MonikerKind,
1616
types
17-
} from 'lsif-protocol';
17+
} from '@vscode/lsif-protocol';
1818

1919
import { DocumentInfo } from './files';
2020
import { Database, UriTransformer } from './database';

0 commit comments

Comments
 (0)