diff --git a/README.md b/README.md index 7606f15..a110711 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ You can then use the options of the command to fine tune the results. - `--threshold 6m` After what delay do you consider the knowledge lost. starts with a number, followed by 'd' for days, 'w' for weeks, 'm' for months or 'y' for years (1y, 6m, 9w). Defaults to one year. - `--contributors contributors.json` Feed data on contributors, see below for that file's format. +- `--weights weights.json` Feed data on file weights, see below for that file's format. - `--with-media` Media files (images, audio and video) are excluded by default from the scan, setting `--with-media` will include them. - `--with-lockfiles` Lockfiles (`package-lock.json`, `yarn.lock`, `composer.lock`) are excluded by default from the scan, setting `--with-lockfiles` will include them. - `--verbose` Output lots of debug information @@ -73,7 +74,7 @@ Fresh/Fading knowledge Vitalii Shapovalov │ 0.14 % │ 0.14 % │ 0.00 % -List +Lost knowledge Name │ Total ─────────────────────────────────────┼────────── diff --git a/src/bin.js b/src/bin.js index dfcfc4d..8e0f59c 100755 --- a/src/bin.js +++ b/src/bin.js @@ -217,7 +217,7 @@ yargs(hideBin(process.argv)) console.log("It seems this repository has no fresh knowledge."); } - renderTitle("List"); + renderTitle("Lost knowledge"); if (result.knowledge.lost.length) { renderLost(result, maxLostContributors); } else {