volar-service-markdown 0.0.20 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -216,9 +216,9 @@ function create() {
|
|
|
216
216
|
return ls.getFoldingRanges(document, token);
|
|
217
217
|
}
|
|
218
218
|
},
|
|
219
|
-
provideReferences(document, position, token) {
|
|
219
|
+
provideReferences(document, position, referenceContext, token) {
|
|
220
220
|
if (prepare(document)) {
|
|
221
|
-
return ls.getReferences(document, position,
|
|
221
|
+
return ls.getReferences(document, position, referenceContext, token);
|
|
222
222
|
}
|
|
223
223
|
},
|
|
224
224
|
provideRenameEdits(document, position, newName, token) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "volar-service-markdown",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "Integrate vscode-markdown-languageservice into Volar",
|
|
5
5
|
"homepage": "https://github.com/volarjs/services/tree/master/packages/markdown",
|
|
6
6
|
"bugs": "https://github.com/volarjs/services/issues",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"main": "out/index.js",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"files": [
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"**/*.js",
|
|
15
|
+
"**/*.d.ts"
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"optional": true
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "6fb3db40aff2f3dbce116fc24b49c186ff5c0e5e"
|
|
46
46
|
}
|
|
File without changes
|