v1.1.6 added homepageUrl argument
This commit is contained in:
@@ -10,6 +10,7 @@ export interface ScriptPathT {
|
||||
export interface getAllPathsOps {
|
||||
baseUrl: string
|
||||
supportUrl: string
|
||||
homepageUrl: string
|
||||
remoteBranch: string
|
||||
inBase: string
|
||||
outBase: string
|
||||
@@ -18,16 +19,20 @@ export interface getAllPathsOps {
|
||||
export default function getAllPaths({
|
||||
baseUrl,
|
||||
supportUrl,
|
||||
homepageUrl,
|
||||
remoteBranch,
|
||||
inBase,
|
||||
outBase,
|
||||
}: getAllPathsOps) {
|
||||
// generate links for remote git server
|
||||
const homeUrl = baseUrl
|
||||
if (baseUrl != '' && remoteBranch != '') {
|
||||
if (supportUrl == '') {
|
||||
supportUrl = `${baseUrl}/issues`
|
||||
}
|
||||
|
||||
if (homepageUrl == '') {
|
||||
homepageUrl = baseUrl
|
||||
}
|
||||
baseUrl = `${baseUrl}/raw/branch/${remoteBranch}/${outBase}`
|
||||
}
|
||||
|
||||
@@ -37,7 +42,7 @@ export default function getAllPaths({
|
||||
out: outBase,
|
||||
},
|
||||
url: {
|
||||
home: homeUrl,
|
||||
home: homepageUrl,
|
||||
base: baseUrl,
|
||||
support: supportUrl,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user