ci-npm-update
Advanced tools
Comparing version 1.0.2 to 1.0.3
# The Reivision History of ci-npm-update | ||
## v1.0.3 - 2016/08/13 | ||
* Fix issues that packages that have no repository url made broken links | ||
## v1.0.2 - 2016/08/12 | ||
@@ -4,0 +8,0 @@ |
@@ -61,8 +61,10 @@ // to file an issue from a package info list | ||
function compareViewToMarkdown(c) { | ||
if (c.hasDiffUrl()) { | ||
return `* ${c.name}: [${c.getVersionRange()}](${c.getDiffUrl()})\n`; | ||
if (c.hasRepositoryUrl()) { | ||
if (c.hasDiffUrl()) { | ||
return `* ${c.name}: [${c.getVersionRange()}](${c.getDiffUrl()})\n`; | ||
} | ||
else { | ||
return `* ${c.name} ${c.getRepositoryUrl()}\n`; | ||
} | ||
} | ||
else if (c.hasRepositoryUrl()) { | ||
return `* ${c.name} ${c.getRepositoryUrl()}\n`; | ||
} | ||
else { | ||
@@ -69,0 +71,0 @@ return `* ${c.name}`; |
{ | ||
"name": "ci-npm-update", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Keep NPM dependencies up-to-date with CI, providing version-to-version diff for each library", | ||
@@ -12,3 +12,3 @@ "repository": { | ||
"scripts": { | ||
"dry-run": "npm build && bin/ci-npm-update", | ||
"dry-run": "npm run build && bin/ci-npm-update", | ||
"prepublish": "npm test", | ||
@@ -15,0 +15,0 @@ "setup": "npm install && npm dedupe", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
157984
1779