react-dev-insight 1.0.1 → 1.0.3
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 +4 -4
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -57,21 +57,21 @@ It runs passively while you build, instantly flagging anomalies, tracking render
|
|
|
57
57
|
<tr>
|
|
58
58
|
<td align="center">
|
|
59
59
|
<strong>Re-render Highlights</strong><br/><br/>
|
|
60
|
-
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/rerender.gif" alt="Re-render Highlight" width="
|
|
60
|
+
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/rerender.gif" alt="Re-render Highlight" width="100%"/>
|
|
61
61
|
</td>
|
|
62
62
|
<td align="center">
|
|
63
63
|
<strong>Render Badges</strong><br/><br/>
|
|
64
|
-
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/badge.gif" alt="Render Badge" width="
|
|
64
|
+
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/badge.gif" alt="Render Badge" width="100%"/>
|
|
65
65
|
</td>
|
|
66
66
|
</tr>
|
|
67
67
|
<tr>
|
|
68
68
|
<td align="center">
|
|
69
69
|
<br/><strong>Prop Diff Tooltip</strong><br/><br/>
|
|
70
|
-
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/tooltip.gif" alt="Prop Diff Tooltip" width="
|
|
70
|
+
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/tooltip.gif" alt="Prop Diff Tooltip" width="100%"/>
|
|
71
71
|
</td>
|
|
72
72
|
<td align="center">
|
|
73
73
|
<br/><strong>Mini Dashboard</strong><br/><br/>
|
|
74
|
-
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/dashboard.gif" alt="Mini Dashboard" width="
|
|
74
|
+
<img src="https://raw.githubusercontent.com/santhoshkumar7300/react-dev-insight/main/assets/dashboard.gif" alt="Mini Dashboard" width="100%"/>
|
|
75
75
|
</td>
|
|
76
76
|
</tr>
|
|
77
77
|
</table>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dev-insight",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A lightweight React developer experience plugin that visually shows component re-render highlights and prop changes.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -30,13 +30,24 @@
|
|
|
30
30
|
"tsup": "^8.0.0",
|
|
31
31
|
"typescript": "^5.0.0"
|
|
32
32
|
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/santhoshkumar7300/react-dev-insight.git"
|
|
36
|
+
},
|
|
37
|
+
"author": "Santhoshkumar V <santhoshbenuu@gmail.com> (https://github.com/santhoshkumar7300)",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/santhoshkumar7300/react-dev-insight/issues"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://github.com/santhoshkumar7300",
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"registry": "https://registry.npmjs.org/"
|
|
45
|
+
},
|
|
33
46
|
"keywords": [
|
|
34
47
|
"react",
|
|
35
48
|
"dev",
|
|
36
49
|
"overlay",
|
|
37
50
|
"render tracker",
|
|
38
51
|
"tools"
|
|
39
|
-
]
|
|
40
|
-
"author": "Santhoshkumar V",
|
|
41
|
-
"license": "MIT"
|
|
52
|
+
]
|
|
42
53
|
}
|