ci-npm-update
Advanced tools
Comparing version 1.0.7 to 1.0.8
# The Reivision History of ci-npm-update | ||
## v1.0.8 - 2016/09/30 | ||
* Avoid crashes when repository URLs are not a valid git repository (#50, #51) | ||
## v1.0.7 - 2016/09/12 | ||
@@ -4,0 +8,0 @@ |
@@ -14,4 +14,9 @@ "use strict"; | ||
} | ||
let data = github_1.GitHubApi.parseUrl(repository.url); | ||
return `https://${data.host}/${data.owner}/${data.repository}`; | ||
try { | ||
let data = github_1.GitHubApi.parseUrl(repository.url); | ||
return `https://${data.host}/${data.owner}/${data.repository}`; | ||
} | ||
catch (e) { | ||
return null; | ||
} | ||
} | ||
@@ -18,0 +23,0 @@ hasRepositoryUrl() { |
{ | ||
"name": "ci-npm-update", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Keep NPM dependencies up-to-date with CI, providing version-to-version diff for each library", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
159382
1797