Skip to content

Commit a0987d6

Browse files
committed
Use the correct package.json version
1 parent 0e0c585 commit a0987d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ProjectIndexer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import * as lsif from './lsif'
99
import { LsifSymbol } from './LsifSymbol'
1010
import { Options, lsiftyped } from './main'
1111
import { Packages } from './Packages'
12+
import packageJson from '../package.json'
1213

1314
export class ProjectIndexer {
1415
private options: Options
@@ -32,7 +33,7 @@ export class ProjectIndexer {
3233
text_document_encoding: lsiftyped.TextEncoding.UTF8,
3334
tool_info: new lsiftyped.ToolInfo({
3435
name: 'lsif-typescript',
35-
version: '0.1.0',
36+
version: packageJson.version,
3637
arguments: [],
3738
}),
3839
}),

0 commit comments

Comments
 (0)