@spyglassmc/core 0.4.42 → 0.4.43
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.
- package/lib/service/Project.js +1 -1
- package/package.json +2 -2
package/lib/service/Project.js
CHANGED
|
@@ -212,7 +212,7 @@ export class Project {
|
|
|
212
212
|
// Recheck client managed files after the READY process, as they may have incomplete results and are user-facing.
|
|
213
213
|
const promises = [];
|
|
214
214
|
for (const { doc, node } of this.#clientManagedDocAndNodes.values()) {
|
|
215
|
-
promises.push(this.check(doc, node));
|
|
215
|
+
promises.push(this.bind(doc, node).then(() => this.check(doc, node)));
|
|
216
216
|
}
|
|
217
217
|
Promise.all(promises).catch(e => this.logger.error('[Project#ready] Error occurred when rechecking client managed files after READY', e));
|
|
218
218
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spyglassmc/core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.43",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"rfdc": "^1.3.0",
|
|
25
25
|
"vscode-languageserver-textdocument": "^1.0.4",
|
|
26
26
|
"whatwg-url": "^14.0.0",
|
|
27
|
-
"@spyglassmc/locales": "0.3.
|
|
27
|
+
"@spyglassmc/locales": "0.3.22"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/decompress": "^4.2.3",
|