Skip to content
This repository has been archived by the owner on Nov 3, 2019. It is now read-only.

Commit

Permalink
fix(plugin-dependencies): trim package descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Apr 3, 2016
1 parent f6c47ce commit 8653680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ mos test --tap | tap-nyan
- [eslint-plugin-standard](https://github.com/xjamundx/eslint-plugin-standard): ESlint Plugin for the Standard Linter
- [execa](https://github.com/sindresorhus/execa): A better `child_process`
- [ghooks](https://github.com/gtramontina/ghooks): Simple git hooks
- [istanbul](https://github.com/gotwarlost/istanbul): Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests
- [istanbul](https://github.com/gotwarlost/istanbul): Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests
- [mocha](https://github.com/mochajs/mocha): simple, flexible, fun test framework
- [semantic-release](https://github.com/semantic-release/semantic-release): automated semver compliant package publishing
- [validate-commit-msg](https://github.com/kentcdodds/validate-commit-msg): Script to validate a commit message follows the conventional changelog standard
Expand Down
2 changes: 1 addition & 1 deletion plugins/mos-plugin-dependencies/lib/render-deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function renderDeps (opts) {

return depDetails
.map(depDetails => '- ' + '[' + depDetails.name + '](' +
getDepURL(depDetails) + '): ' + depDetails.description)
getDepURL(depDetails) + '): ' + depDetails.description.trim())
.join('\n')
}

Expand Down

0 comments on commit 8653680

Please sign in to comment.