@rozenite/performance-monitor-plugin 1.10.0 → 1.11.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/CHANGELOG.md +15 -0
- package/dist/devtools/App.html +2 -2
- package/dist/devtools/assets/{App-CcO8G7X1.css → App-Bm_UxxOC.css} +1 -1
- package/dist/devtools/assets/App-DaBYzvA5.js +66 -0
- package/dist/react-native/chunks/usePerformanceMonitorDevTools.require.cjs +1 -1
- package/dist/react-native/chunks/usePerformanceMonitorDevTools.require.js +5 -6
- package/dist/rozenite.json +1 -1
- package/package.json +4 -4
- package/src/react-native/__tests__/performance-monitor.test.ts +66 -0
- package/src/react-native/performance-monitor.ts +3 -1
- package/src/ui/App.css +410 -0
- package/src/ui/App.tsx +134 -87
- package/src/ui/__tests__/derive-startup-summary.test.ts +185 -0
- package/src/ui/__tests__/waterfall.test.ts +192 -0
- package/src/ui/components/DetailsSidebar.tsx +4 -30
- package/src/ui/components/StartupTab.tsx +138 -0
- package/src/ui/components/WaterfallView.tsx +285 -0
- package/src/ui/derive-startup-summary.ts +101 -0
- package/src/ui/waterfall.ts +576 -0
- package/dist/devtools/assets/App-C6sYVLCG.js +0 -66
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @rozenite/performance-monitor-plugin
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#283](https://github.com/callstackincubator/rozenite/pull/283) [`dc7cdce`](https://github.com/callstackincubator/rozenite/commit/dc7cdce3659df004b591ccb3e74c1f3c638702b9) Thanks [@burczu](https://github.com/burczu)! - Add first-class startup insights to the Performance Monitor plugin.
|
|
8
|
+
|
|
9
|
+
A new Startup tab (first in the tab order) shows Total startup time and the three key launch phases — Native Launch, JS Bundle, and Initial Mount — with proportional bars so you can see at a glance where startup time is spent. Phases that have not yet completed show as "In progress…"; phases absent from the event stream show as "—". The startup data is derived automatically from React Native's buffered native marks, so no extra instrumentation is required.
|
|
10
|
+
|
|
11
|
+
- [#285](https://github.com/callstackincubator/rozenite/pull/285) [`d2faeeb`](https://github.com/callstackincubator/rozenite/commit/d2faeeb13c0d2d3171bc21542d1b23810d9d51c1) Thanks [@draggie](https://github.com/draggie)! - Add a waterfall timeline view to Performance Monitor so you can inspect marks, measures, metrics, and resources in one chronological view.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies []:
|
|
16
|
+
- @rozenite/plugin-bridge@1.11.0
|
|
17
|
+
|
|
3
18
|
## 1.10.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/dist/devtools/App.html
CHANGED
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<script>
|
|
23
23
|
var __ROZENITE_PANEL__ = true;
|
|
24
24
|
</script>
|
|
25
|
-
<script type="module" crossorigin src="../devtools/assets/App-
|
|
26
|
-
<link rel="stylesheet" crossorigin href="../devtools/assets/App-
|
|
25
|
+
<script type="module" crossorigin src="../devtools/assets/App-DaBYzvA5.js"></script>
|
|
26
|
+
<link rel="stylesheet" crossorigin href="../devtools/assets/App-Bm_UxxOC.css">
|
|
27
27
|
</head>
|
|
28
28
|
<body>
|
|
29
29
|
<div id="root"></div>
|