Skip to content

Commit

Permalink
Merge branch 'onigoetz:master' into select-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfratello authored May 2, 2024
2 parents 4a361ff + 53043f6 commit 3105d01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -73,7 +74,7 @@ Fresh/Fading knowledge
Vitalii Shapovalov │ 0.14 % │ 0.14 % │ 0.00 %
List
Lost knowledge
Name │ Total
─────────────────────────────────────┼──────────
Expand Down
2 changes: 1 addition & 1 deletion src/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3105d01

Please sign in to comment.