@codingame/monaco-vscode-performance-service-override 20.5.0 → 21.0.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-performance-service-override",
3
- "version": "20.5.0",
3
+ "version": "21.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - performance service-override",
6
6
  "keywords": [],
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.5.0",
19
- "@codingame/monaco-vscode-api": "20.5.0",
20
- "@codingame/monaco-vscode-caeb744c-8e3f-5c11-80fb-0f057d24d544-common": "20.5.0",
21
- "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "20.5.0"
18
+ "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "21.0.0",
19
+ "@codingame/monaco-vscode-api": "21.0.0",
20
+ "@codingame/monaco-vscode-caeb744c-8e3f-5c11-80fb-0f057d24d544-common": "21.0.0",
21
+ "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "21.0.0"
22
22
  },
23
23
  "main": "index.js",
24
24
  "module": "index.js",
@@ -32,7 +32,7 @@ registerAction2(class extends Action2 {
32
32
  constructor() {
33
33
  super({
34
34
  id: 'perfview.show',
35
- title: ( localize2(9144, 'Startup Performance')),
35
+ title: ( localize2(9306, 'Startup Performance')),
36
36
  category: Categories.Developer,
37
37
  f1: true
38
38
  });
@@ -47,7 +47,7 @@ registerAction2(class PrintServiceCycles extends Action2 {
47
47
  constructor() {
48
48
  super({
49
49
  id: 'perf.insta.printAsyncCycles',
50
- title: ( localize2(9145, 'Print Service Cycles')),
50
+ title: ( localize2(9307, 'Print Service Cycles')),
51
51
  category: Categories.Developer,
52
52
  f1: true
53
53
  });
@@ -69,7 +69,7 @@ registerAction2(class PrintServiceTraces extends Action2 {
69
69
  constructor() {
70
70
  super({
71
71
  id: 'perf.insta.printTraces',
72
- title: ( localize2(9146, 'Print Service Traces')),
72
+ title: ( localize2(9308, 'Print Service Traces')),
73
73
  category: Categories.Developer,
74
74
  f1: true
75
75
  });
@@ -88,7 +88,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
88
88
  constructor() {
89
89
  super({
90
90
  id: 'perf.event.profiling',
91
- title: ( localize2(9147, 'Print Emitter Profiles')),
91
+ title: ( localize2(9309, 'Print Emitter Profiles')),
92
92
  category: Categories.Developer,
93
93
  f1: true
94
94
  });
@@ -63,7 +63,7 @@ let PerfviewInput = class PerfviewInput extends TextResourceEditorInput {
63
63
  return PerfviewInput_1.Id;
64
64
  }
65
65
  constructor(textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService) {
66
- super(PerfviewContrib.get().getInputUri(), ( localize(9148, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
66
+ super(PerfviewContrib.get().getInputUri(), ( localize(9310, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
67
67
  }
68
68
  };
69
69
  PerfviewInput = PerfviewInput_1 = ( __decorate([
@@ -153,9 +153,9 @@ let PerfModelContentProvider = class PerfModelContentProvider {
153
153
  const metrics = this._timerService.startupMetrics;
154
154
  const contribTimings = ( Registry.as(Extensions.Workbench)).timings;
155
155
  const table = [];
156
+ table.push(['import(main.js)', metrics.timers.ellapsedLoadMainBundle, '[main]', `initial startup: ${metrics.initialStartup}`]);
156
157
  table.push(['start => app.isReady', metrics.timers.ellapsedAppReady, '[main]', `initial startup: ${metrics.initialStartup}`]);
157
158
  table.push(['nls:start => nls:end', metrics.timers.ellapsedNlsGeneration, '[main]', `initial startup: ${metrics.initialStartup}`]);
158
- table.push(['import(main.js)', metrics.timers.ellapsedLoadMainBundle, '[main]', `initial startup: ${metrics.initialStartup}`]);
159
159
  table.push(['run main.js', metrics.timers.ellapsedRunMainBundle, '[main]', `initial startup: ${metrics.initialStartup}`]);
160
160
  table.push(['start crash reporter', metrics.timers.ellapsedCrashReporter, '[main]', `initial startup: ${metrics.initialStartup}`]);
161
161
  table.push(['serve main IPC handle', metrics.timers.ellapsedMainServer, '[main]', `initial startup: ${metrics.initialStartup}`]);