@codingame/monaco-vscode-working-copy-service-override 28.1.1 → 28.2.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-working-copy-service-override",
3
- "version": "28.1.1",
3
+ "version": "28.2.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - working-copy service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "28.1.1",
19
- "@codingame/monaco-vscode-files-service-override": "28.1.1"
18
+ "@codingame/monaco-vscode-api": "28.2.0",
19
+ "@codingame/monaco-vscode-files-service-override": "28.2.0"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -55,7 +55,7 @@ let WorkingCopyHistoryTracker = class WorkingCopyHistoryTracker extends Disposab
55
55
  this.contextService = contextService;
56
56
  this.fileService = fileService;
57
57
  this.limiter = this._register(( new Limiter(MAX_PARALLEL_HISTORY_IO_OPS)));
58
- this.resourceExcludeMatcher = this._register(( new GlobalIdleValue(() => {
58
+ this.resourceExcludeMatcher = this._register(new GlobalIdleValue(() => {
59
59
  const matcher = this._register(( new ResourceGlobMatcher(
60
60
  root => this.configurationService.getValue(WorkingCopyHistoryTracker_1.SETTINGS.EXCLUDES, {
61
61
  resource: root
@@ -65,7 +65,7 @@ let WorkingCopyHistoryTracker = class WorkingCopyHistoryTracker extends Disposab
65
65
  this.configurationService
66
66
  )));
67
67
  return matcher;
68
- })));
68
+ }));
69
69
  this.pendingAddHistoryEntryOperations = ( new ResourceMap(resource => this.uriIdentityService.extUri.getComparisonKey(resource)));
70
70
  this.workingCopyContentVersion = ( new ResourceMap(resource => this.uriIdentityService.extUri.getComparisonKey(resource)));
71
71
  this.historyEntryContentVersion = ( new ResourceMap(resource => this.uriIdentityService.extUri.getComparisonKey(resource)));