本文整理汇总了TypeScript中builder-util-runtime/out/bintray.BintrayClient.getVersion方法的典型用法代码示例。如果您正苦于以下问题:TypeScript BintrayClient.getVersion方法的具体用法?TypeScript BintrayClient.getVersion怎么用?TypeScript BintrayClient.getVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类builder-util-runtime/out/bintray.BintrayClient
的用法示例。
在下文中一共展示了BintrayClient.getVersion方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getLatestVersion
async getLatestVersion(): Promise<VersionInfo> {
try {
const data = await this.client.getVersion("_latest")
return {
version: data.name,
}
}
catch (e) {
if ("response" in e && e.response.statusCode === 404) {
throw new Error(`No latest version, please ensure that user, package and repository correctly configured. Or at least one version is published. ${e.stack || e.message}`)
}
throw e
}
}
示例2: getLatestVersion
async getLatestVersion(): Promise<UpdateInfo> {
try {
const data = await this.client.getVersion("_latest")
const channelFilename = getChannelFilename(this.getDefaultChannelName())
const files = await this.client.getVersionFiles(data.name)
const channelFile = files.find(it => it.name.endsWith(`_${channelFilename}`) || it.name.endsWith(`-${channelFilename}`))
if (channelFile == null) {
// noinspection ExceptionCaughtLocallyJS
throw newError(`Cannot find channel file "${channelFilename}", existing files:\n${files.map(it => JSON.stringify(it, null, 2)).join(",\n")}`, "ERR_UPDATER_CHANNEL_FILE_NOT_FOUND")
}
const channelFileUrl = new URL(`https://dl.bintray.com/${this.client.owner}/${this.client.repo}/${channelFile.name}`)
return parseUpdateInfo(await this.httpRequest(channelFileUrl), channelFilename, channelFileUrl)
}
catch (e) {
if ("statusCode" in e && e.statusCode === 404) {
throw newError(`No latest version, please ensure that user, package and repository correctly configured. Or at least one version is published. ${e.stack || e.message}`, "ERR_UPDATER_LATEST_VERSION_NOT_FOUND")
}
throw e
}
}