Skip to content

Commit 9aab002

Browse files
committed
push workaround for ts-loader weirdness
1 parent 4c45266 commit 9aab002

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/markdown-language-features/src/features/workspaceSymbolProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class VSCodeWorkspaceMarkdownDocumentProvider extends Disposable implements Work
102102
});
103103
}
104104

105-
return Promise.resolve({
105+
return {
106106
uri: resource,
107107
version: 0,
108108
lineCount: lineCount,
@@ -112,7 +112,7 @@ class VSCodeWorkspaceMarkdownDocumentProvider extends Disposable implements Work
112112
getText: () => {
113113
return text;
114114
}
115-
});
115+
};
116116
}
117117
}
118118

0 commit comments

Comments
 (0)