gitify-dependencies
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
## v1.0.1 - 2016-06-14 | ||
### Fixed | ||
- Handling of public git URLs | ||
## v1.0.0 - 2016-05-23 | ||
@@ -5,0 +9,0 @@ ### Added |
@@ -138,3 +138,5 @@ 'use strict'; | ||
if (packageUrl) { | ||
return packageUrl.replace('git://github.com', 'git+ssh://git@github.com'); | ||
return packageUrl | ||
.replace('git://github.com', 'git+ssh://git@github.com') | ||
.replace('git+https://github.com', 'https://github.com'); | ||
} | ||
@@ -141,0 +143,0 @@ } |
{ | ||
"name": "gitify-dependencies", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "CLI tool for replacing node dependencies with their respective git repositories", | ||
@@ -5,0 +5,0 @@ "main": "lib/gitify.js", |
@@ -1,2 +0,2 @@ | ||
# gitify-dependencies [![Build Status](https://travis-ci.com/contentful-labs/gitify-dependencies.svg?token=CYEWg3reo6fMQ47zH5gY&branch=master)](https://travis-ci.com/contentful-labs/gitify-dependencies) | ||
# gitify-dependencies [![Build Status](https://api.travis-ci.org/contentful-labs/gitify-dependencies.svg?branch=master)](https://travis-ci.org/contentful-labs/gitify-dependencies) | ||
CLI tool for replacing node dependencies with their respective git repositories. | ||
@@ -3,0 +3,0 @@ |
@@ -5,8 +5,15 @@ { | ||
"npm-shrinkwrap-version": "5.4.0", | ||
"node-version": "v4.2.4", | ||
"node-version": "v4.3.1", | ||
"dependencies": { | ||
"keepachangelog": { | ||
"version": "0.7.0-1-gbb74726", | ||
"resolved": "git+ssh://git@github.com/contentful-labs/keepachangelog.git#v0.7.0-1-gbb74726", | ||
"version": "0.7.2", | ||
"dependencies": { | ||
"babel-runtime": { | ||
"version": "4.7.16", | ||
"dependencies": { | ||
"core-js": { | ||
"version": "0.6.1" | ||
} | ||
} | ||
}, | ||
"bluebird": { | ||
@@ -16,3 +23,3 @@ "version": "2.10.2" | ||
"lodash-node": { | ||
"version": "3.10.1" | ||
"version": "3.10.2" | ||
}, | ||
@@ -46,5 +53,5 @@ "markdown": { | ||
"lodash": { | ||
"version": "4.0.0" | ||
"version": "4.13.1" | ||
} | ||
} | ||
} | ||
} |
@@ -12,5 +12,5 @@ { | ||
"dependencies": { | ||
"keepachangelog": "^0.7.0", | ||
"keepachangelog": "^0.7.2", | ||
"lodash": "^4.0.0" | ||
} | ||
} |
@@ -48,3 +48,3 @@ 'use strict'; | ||
expect(hash).to.equal('bb747260fcdad8e52f8a98e4dfa273869027a071'); | ||
expect(hash).to.equal('eebd023c392a0b7fc5a6e0952e57be4d5485dd4e'); | ||
}); | ||
@@ -51,0 +51,0 @@ |
@@ -44,3 +44,3 @@ 'use strict'; | ||
expect(hash).to.equal('bb747260fcdad8e52f8a98e4dfa273869027a071'); | ||
expect(hash).to.equal('eebd023c392a0b7fc5a6e0952e57be4d5485dd4e'); | ||
}); | ||
@@ -47,0 +47,0 @@ |
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
31971
629