npm fix run

This commit is contained in:
Jeremy Kolb 2019-01-12 18:49:07 -05:00
parent eb931c0d9e
commit 2a1cb52c99
4 changed files with 16 additions and 9 deletions

View file

@ -10,7 +10,9 @@ export interface SourceChange {
}
export async function handle(change: SourceChange) {
const wsEdit = Server.client.protocol2CodeConverter.asWorkspaceEdit(change.workspaceEdit);
const wsEdit = Server.client.protocol2CodeConverter.asWorkspaceEdit(
change.workspaceEdit
);
let created;
let moved;
if (change.workspaceEdit.documentChanges) {