@codingame/monaco-vscode-performance-service-override 29.1.1 → 30.0.1

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-performance-service-override",
3
- "version": "29.1.1",
3
+ "version": "30.0.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - performance service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "29.1.1"
18
+ "@codingame/monaco-vscode-api": "30.0.1"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -34,7 +34,7 @@ registerAction2(class extends Action2 {
34
34
  constructor() {
35
35
  super({
36
36
  id: "perfview.show",
37
- title: ( localize2(11529, "Startup Performance")),
37
+ title: ( localize2(11594, "Startup Performance")),
38
38
  category: Categories.Developer,
39
39
  f1: true
40
40
  });
@@ -51,7 +51,7 @@ registerAction2(class PrintServiceCycles extends Action2 {
51
51
  constructor() {
52
52
  super({
53
53
  id: "perf.insta.printAsyncCycles",
54
- title: ( localize2(11530, "Print Service Cycles")),
54
+ title: ( localize2(11595, "Print Service Cycles")),
55
55
  category: Categories.Developer,
56
56
  f1: true
57
57
  });
@@ -72,7 +72,7 @@ registerAction2(class PrintServiceTraces extends Action2 {
72
72
  constructor() {
73
73
  super({
74
74
  id: "perf.insta.printTraces",
75
- title: ( localize2(11531, "Print Service Traces")),
75
+ title: ( localize2(11596, "Print Service Traces")),
76
76
  category: Categories.Developer,
77
77
  f1: true
78
78
  });
@@ -91,7 +91,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
91
91
  constructor() {
92
92
  super({
93
93
  id: "perf.event.profiling",
94
- title: ( localize2(11532, "Print Emitter Profiles")),
94
+ title: ( localize2(11597, "Print Emitter Profiles")),
95
95
  category: Categories.Developer,
96
96
  f1: true
97
97
  });
@@ -80,7 +80,7 @@ let PerfviewInput = class PerfviewInput extends TextResourceEditorInput {
80
80
  textResourceConfigurationService,
81
81
  customEditorLabelService
82
82
  ) {
83
- super(PerfviewContrib.get().getInputUri(), ( localize(11533, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
83
+ super(PerfviewContrib.get().getInputUri(), ( localize(11598, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
84
84
  }
85
85
  };
86
86
  PerfviewInput = PerfviewInput_1 = ( __decorate([( __param(0, ITextModelService)), ( __param(1, ITextFileService)), ( __param(2, IEditorService)), ( __param(3, IFileService)), ( __param(4, ILabelService)), ( __param(5, IFilesConfigurationService)), ( __param(6, ITextResourceConfigurationService)), ( __param(7, ICustomEditorLabelService))], PerfviewInput));
@@ -313,7 +313,7 @@ let PerfModelContentProvider = class PerfModelContentProvider {
313
313
  "create workbench contributions",
314
314
  metrics.timers.ellapsedWorkbenchContributions,
315
315
  "[renderer]",
316
- `${(contribTimings.get(LifecyclePhase.Starting)?.length ?? 0) + (contribTimings.get(LifecyclePhase.Starting)?.length ?? 0)} blocking startup`
316
+ `${(contribTimings.get(LifecyclePhase.Starting)?.length ?? 0) + (contribTimings.get(LifecyclePhase.Ready)?.length ?? 0)} blocking startup`
317
317
  ]);
318
318
  table.push([
319
319
  "overall workbench load",