@codingame/monaco-vscode-environment-service-override 8.0.4 → 9.0.2
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-environment-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.2",
|
|
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@9.0.2"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -125,7 +125,7 @@ class BrowserWorkbenchEnvironmentService {
|
|
|
125
125
|
get skipReleaseNotes() { return this.payload?.get('skipReleaseNotes') === 'true'; }
|
|
126
126
|
get skipWelcome() { return this.payload?.get('skipWelcome') === 'true'; }
|
|
127
127
|
get disableWorkspaceTrust() { return !this.options.enableWorkspaceTrust; }
|
|
128
|
-
get
|
|
128
|
+
get profile() { return this.payload?.get('profile'); }
|
|
129
129
|
constructor(workspaceId, logsHome, options, productService) {
|
|
130
130
|
this.workspaceId = workspaceId;
|
|
131
131
|
this.logsHome = logsHome;
|
|
@@ -363,7 +363,7 @@ BrowserWorkbenchEnvironmentService.__decorator = ( __decorate([
|
|
|
363
363
|
], BrowserWorkbenchEnvironmentService.prototype, "disableWorkspaceTrust", null));
|
|
364
364
|
BrowserWorkbenchEnvironmentService.__decorator = ( __decorate([
|
|
365
365
|
memoize
|
|
366
|
-
], BrowserWorkbenchEnvironmentService.prototype, "
|
|
366
|
+
], BrowserWorkbenchEnvironmentService.prototype, "profile", null));
|
|
367
367
|
BrowserWorkbenchEnvironmentService.__decorator = ( __decorate([
|
|
368
368
|
memoize
|
|
369
369
|
], BrowserWorkbenchEnvironmentService.prototype, "filesToOpenOrCreate", null));
|