本文整理匯總了TypeScript中vsts-task-tool-lib/tool.evaluateVersions函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript evaluateVersions函數的具體用法?TypeScript evaluateVersions怎麽用?TypeScript evaluateVersions使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了evaluateVersions函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: queryLatestMatch
async function queryLatestMatch(versionSpec: string): Promise<string> {
// node offers a json list of versions
let dataFileName: string;
switch (osPlat) {
case "linux": dataFileName = "linux-" + osArch; break;
case "darwin": dataFileName = "osx-" + osArch + '-tar'; break;
case "win32": dataFileName = "win-" + osArch + '-exe'; break;
default: throw new Error(`Unexpected OS '${osPlat}'`);
}
let versions: string[] = [];
let dataUrl = "https://nodejs.org/dist/index.json";
let rest: restm.RestClient = new restm.RestClient('vsts-node-tool');
let nodeVersions: INodeVersion[] = (await rest.get<INodeVersion[]>(dataUrl)).result;
nodeVersions.forEach((nodeVersion:INodeVersion) => {
// ensure this version supports your os and platform
if (nodeVersion.files.indexOf(dataFileName) >= 0) {
versions.push(nodeVersion.version);
}
});
// get the latest version that matches the version spec
let version: string = toolLib.evaluateVersions(versions, versionSpec);
return version;
}
示例2: sanitizeVersionString
export function sanitizeVersionString(versions, inputVersion: string): string {
var version = toolLib.evaluateVersions(versions, inputVersion);
if (!version) {
throw new Error(tl.loc("NotAValidVersion", JSON.stringify(versions)));
}
return version;
}