Open
Description
Following conventional-changelog/get-pkg-repo#9 (comment)
Possible solution: in index.js
// before
string = string.replace('.com:', '.com/')
// after
string = string.replace(/\.([A-Za-z]+)\:/, '.$1/');
Following conventional-changelog/get-pkg-repo#9 (comment)
Possible solution: in index.js
// before
string = string.replace('.com:', '.com/')
// after
string = string.replace(/\.([A-Za-z]+)\:/, '.$1/');