react-perfscope 0.1.1 → 0.3.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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# react-perfscope
|
|
2
2
|
|
|
3
|
-
Performance debugging tool for React 18+ apps. Records forced reflows, layout shifts, long tasks,
|
|
3
|
+
Performance debugging tool for React 18+ apps. Records forced reflows, layout shifts, long tasks, web vitals, network, interactions, and React component renders during development.
|
|
4
4
|
|
|
5
5
|
This meta package re-exports everything from `@react-perfscope/core`, `@react-perfscope/react`, and `@react-perfscope/ui`, plus a side-effect `react-perfscope/auto` entry that bootstraps the full UI in one import.
|
|
6
6
|
|
|
@@ -44,7 +44,7 @@ const unmount = mount({ recorder, position: 'top-right' })
|
|
|
44
44
|
|
|
45
45
|
# 한국어
|
|
46
46
|
|
|
47
|
-
React 18+ 앱용 성능 디버깅 도구. 개발 중에 강제 리플로우, 레이아웃 시프트, 롱 태스크,
|
|
47
|
+
React 18+ 앱용 성능 디버깅 도구. 개발 중에 강제 리플로우, 레이아웃 시프트, 롱 태스크, 웹 바이탈, 네트워크 요청, 인터랙션, React 컴포넌트 렌더를 기록한다.
|
|
48
48
|
|
|
49
49
|
이 메타 패키지는 `@react-perfscope/core`, `@react-perfscope/react`, `@react-perfscope/ui`의 모든 것을 re-export하고, 임포트 한 줄로 전체 UI를 부트스트랩하는 `react-perfscope/auto` 사이드 이펙트 엔트리를 제공한다.
|
|
50
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-perfscope",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Zero-config React performance profiler with an in-app panel.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"./dist/auto.cjs"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@react-perfscope/core": "0.
|
|
43
|
-
"@react-perfscope/react": "0.
|
|
44
|
-
"@react-perfscope/ui": "0.
|
|
42
|
+
"@react-perfscope/core": "0.3.0",
|
|
43
|
+
"@react-perfscope/react": "0.3.0",
|
|
44
|
+
"@react-perfscope/ui": "0.3.0"
|
|
45
45
|
},
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"author": "rayforvideos",
|