repo-dive 0.15.2 → 0.16.1
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 -1
- package/dist/cli.js +238 -69
- package/dist/config.d.ts +1 -1
- package/dist/config.js +1 -0
- package/dist/dashboard/assets/index-B1SMaNuL.js +10 -0
- package/dist/dashboard/assets/index-DRCHXmrD.css +2 -0
- package/dist/dashboard/index.html +2 -2
- package/package.json +13 -13
- package/dist/dashboard/assets/index-1G4_D1Zz.css +0 -2
- package/dist/dashboard/assets/index-CyovVos3.js +0 -10
package/README.md
CHANGED
|
@@ -73,12 +73,13 @@ Collectors so far:
|
|
|
73
73
|
- **todo-comments** — TODO/FIXME/HACK/XXX counts
|
|
74
74
|
- **languages** — lines and file count per language across a commit's source files (lockfiles, minified bundles and generated data excluded)
|
|
75
75
|
- **survival** — `git blame` line survival by extension, author and age cohort (sampled monthly)
|
|
76
|
+
- **file-survival** — file survival by extension, creator and creation cohort, renames followed (sampled monthly)
|
|
76
77
|
|
|
77
78
|
The catalog hides itself from git, but other tools that walk the repository (prettier, markdownlint, cspell, docker builds) each read one ignore file at its root.
|
|
78
79
|
`scan` warns when the catalog is missing from those; `repo-dive ignore` adds it to every one that needs it, writing the entry in the shape the file is already written in and skipping the files whose tool learns about the catalog elsewhere.
|
|
79
80
|
|
|
80
81
|
`index` normalizes raw snapshots into `.repo-dive/index/metrics.sqlite` — a facts-by-categories cube, rebuildable at any time — plus `dashboard.json`.
|
|
81
|
-
`dashboard` then serves a local React app with interactive charts: languages over time, a GitHub-style commit calendar, monthly commits with AI-assisted share, churn, lint-suppression trends, dependency counts over time, code survival by cohort and author, and more.
|
|
82
|
+
`dashboard` then serves a local React app with interactive charts: languages over time, file counts over time, a GitHub-style commit calendar, monthly commits with AI-assisted share, churn, lint-suppression trends, dependency counts over time, code survival by cohort and author, and more.
|
|
82
83
|
|
|
83
84
|
## Configuration
|
|
84
85
|
|