@codingame/monaco-vscode-host-service-override 6.0.2 → 7.0.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-host-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@7.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -409,6 +409,9 @@ let BrowserHostService = class BrowserHostService extends Disposable {
|
|
|
409
409
|
this.shutdownReason = HostShutdownReason.Api;
|
|
410
410
|
return this.lifecycleService.withExpectedShutdown(reason);
|
|
411
411
|
}
|
|
412
|
+
getPathForFile() {
|
|
413
|
+
return undefined;
|
|
414
|
+
}
|
|
412
415
|
};
|
|
413
416
|
BrowserHostService.__decorator = ( (__decorate([
|
|
414
417
|
memoize
|