@codingame/monaco-vscode-editor-service-override 1.85.0 → 1.85.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/tools/editor.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-editor-service-override",
3
- "version": "1.85.0",
3
+ "version": "1.85.2",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,7 +18,7 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@1.85.0",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.85.2",
22
22
  "monaco-editor": "0.45.0"
23
23
  }
24
24
  }
package/tools/editor.js CHANGED
@@ -344,7 +344,7 @@ let MonacoDelegateEditorGroupsService = class MonacoDelegateEditorGroupsService
344
344
  return this.delegate.getLayout();
345
345
  };
346
346
  this.getGroups = (order) => {
347
- return [...this.additionalGroups, ...this.delegate.getGroups(order)];
347
+ return [...this.delegate.getGroups(order), ...this.additionalGroups];
348
348
  };
349
349
  this.getGroup = (identifier) => {
350
350
  return this.delegate.getGroup(identifier) ?? this.additionalGroups.find(group => group.id === identifier);