tech-debt-visualizer 0.2.16 → 0.2.17
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.
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
body {
|
|
53
53
|
margin: 0;
|
|
54
|
-
font-family: "
|
|
54
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
55
55
|
background: var(--bg);
|
|
56
56
|
color: var(--text);
|
|
57
57
|
min-height: 100vh;
|
|
@@ -457,7 +457,7 @@ body.dashboard-page {
|
|
|
457
457
|
|
|
458
458
|
.panel-title {
|
|
459
459
|
color: var(--text-muted);
|
|
460
|
-
font-family: "
|
|
460
|
+
font-family: "Inter", sans-serif;
|
|
461
461
|
font-size: 0.8rem;
|
|
462
462
|
font-weight: 700;
|
|
463
463
|
letter-spacing: 2px;
|
|
@@ -583,7 +583,7 @@ body.dashboard-page {
|
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
.panel-score-pop .score-num {
|
|
586
|
-
font-family: "
|
|
586
|
+
font-family: "Inter", sans-serif;
|
|
587
587
|
font-size: 2.5rem;
|
|
588
588
|
font-weight: 800;
|
|
589
589
|
line-height: 1;
|
|
@@ -605,7 +605,7 @@ body.dashboard-page {
|
|
|
605
605
|
background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
|
|
606
606
|
padding: 0.25rem 0.65rem;
|
|
607
607
|
border-radius: 50px;
|
|
608
|
-
font-family: "
|
|
608
|
+
font-family: "Inter", sans-serif;
|
|
609
609
|
font-size: 0.7rem;
|
|
610
610
|
font-weight: 700;
|
|
611
611
|
letter-spacing: 0.5px;
|
|
@@ -691,7 +691,7 @@ body.dashboard-page {
|
|
|
691
691
|
|
|
692
692
|
.priority-inline h4 {
|
|
693
693
|
margin: 0 0 0.25rem;
|
|
694
|
-
font-family: "
|
|
694
|
+
font-family: "Inter", sans-serif;
|
|
695
695
|
font-size: 0.65rem;
|
|
696
696
|
font-weight: 700;
|
|
697
697
|
text-transform: uppercase;
|
|
@@ -902,13 +902,13 @@ body.dashboard-page {
|
|
|
902
902
|
}
|
|
903
903
|
|
|
904
904
|
.debt-list .title {
|
|
905
|
-
font-family: "
|
|
905
|
+
font-family: "Inter", sans-serif;
|
|
906
906
|
font-size: 0.8rem;
|
|
907
907
|
font-weight: 700;
|
|
908
908
|
color: var(--text);
|
|
909
909
|
margin-bottom: 0.15rem;
|
|
910
910
|
}
|
|
911
|
-
.debt-list .meta { font-size: 0.65rem; color: var(--text-dim); display: block; margin-top: 0.1rem; font-family: "
|
|
911
|
+
.debt-list .meta { font-size: 0.65rem; color: var(--text-dim); display: block; margin-top: 0.1rem; font-family: ui-monospace, "SF Mono", Consolas, monospace; }
|
|
912
912
|
.debt-list-explanation {
|
|
913
913
|
font-size: 0.7rem;
|
|
914
914
|
color: var(--text-muted);
|
package/dist/reports/html.js
CHANGED
|
@@ -82,7 +82,7 @@ function buildHtml(run, title, darkMode, css, script) {
|
|
|
82
82
|
<meta name="twitter:card" content="summary" />
|
|
83
83
|
<meta name="twitter:title" content="${escapeHtml(title)} — ${cleanliness.tier}/5" />
|
|
84
84
|
<meta name="twitter:description" content="${escapeHtml(cleanliness.label)}: ${escapeHtml(cleanliness.description)}" />
|
|
85
|
-
<link href="https://fonts.googleapis.com/css2?family=
|
|
85
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
86
86
|
<style>${css}</style>
|
|
87
87
|
</head>
|
|
88
88
|
<body class="dashboard-page">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tech-debt-visualizer",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"description": "Language-agnostic CLI that analyzes repos and generates interactive technical debt visualizations with AI-powered insights",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|