@codingame/monaco-vscode-remote-agent-service-override 10.1.2 → 10.1.4

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-remote-agent-service-override",
3
- "version": "10.1.2",
3
+ "version": "10.1.4",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -9,7 +9,7 @@
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git@github.com:CodinGame/monaco-vscode-api.git"
12
+ "url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
13
13
  },
14
14
  "type": "module",
15
15
  "private": false,
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@10.1.2",
30
- "@codingame/monaco-vscode-environment-service-override": "10.1.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@10.1.4",
30
+ "@codingame/monaco-vscode-environment-service-override": "10.1.4"
31
31
  }
32
32
  }
@@ -45,15 +45,15 @@ let RemoteConnectionFailureNotificationContribution = class RemoteConnectionFail
45
45
  async _presentConnectionError(err) {
46
46
  await this._dialogService.prompt({
47
47
  type: Severity$1.Error,
48
- message: ( localize(3588, "An unexpected error occurred that requires a reload of this page.")),
48
+ message: ( localize(3570, "An unexpected error occurred that requires a reload of this page.")),
49
49
  detail: ( localize(
50
- 3589,
50
+ 3571,
51
51
  "The workbench failed to connect to the server (Error: {0})",
52
52
  err ? err.message : ''
53
53
  )),
54
54
  buttons: [
55
55
  {
56
- label: ( localize(3590, "&&Reload")),
56
+ label: ( localize(3572, "&&Reload")),
57
57
  run: () => this._hostService.reload()
58
58
  }
59
59
  ]