當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript vso-task-lib.getPathInput函數代碼示例

本文整理匯總了TypeScript中vso-task-lib.getPathInput函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript getPathInput函數的具體用法?TypeScript getPathInput怎麽用?TypeScript getPathInput使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了getPathInput函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: RegExp

import * as tl from 'vso-task-lib';
import * as sh from 'shelljs';
import * as fs from 'fs';

tl.debug("Starting Replace Tokens step");

// get the task vars
var filePath = tl.getPathInput("filePath", true, true);
var tokenRegex = tl.getInput("tokenRegex", true);

var files = tl.find(filePath);
if (files.length === 1) {
	var file = files[0];
	
	// read the file
	fs.readFile(file, 'utf8', (err, data) => {
		if (err) {
			tl.error(`Could not read file ${filePath}. Error is ${err.message}`);
			tl.exit(1);
		} 
		
		var reg = new RegExp(tokenRegex, "g");
		console.info(`Starting regex replacement in ${file}`);
		// loop through each match
		var match: RegExpExecArray;
		while((match = reg.exec(data)) !== null) {
			// find the variable value in the environment
			var varName = match[1];
			var varValue = tl.getVariable(varName);
			if (typeof varValue === 'undefined') {
				tl.warning(`... token ${varName} does not have an environment value`);
開發者ID:BigDataTechnology,項目名稱:cols-agent-tasks,代碼行數:31,代碼來源:replaceTokens.ts

示例2:

import * as tl from 'vso-task-lib';
import * as sh from 'shelljs';
import * as fs from 'fs';
import * as os from 'os';

tl.debug("Starting Replace Tokens task");

// get the task vars
var sourcePath = tl.getPathInput("sourcePath", true, true);
// clear leading and trailing quotes for paths with spaces
sourcePath = sourcePath.replace(/"/g, "");

var filePattern = tl.getInput("filePattern", true);
var tokenRegex = tl.getInput("tokenRegex", true);
var secretTokenInput = tl.getInput("secretTokens", false);

// store the tokens and values if there is any secret token input 
var secretTokens: {[id: string]: string} = {};
if (typeof secretTokenInput !== "undefined") {
    var inputArray : string[] = secretTokenInput.split(";");
    for (var token of inputArray) {
        if (token.indexOf(":") > -1) {  
            var valArray : string[] = token.split(":");
            if (valArray.length == 2) {
                var key = valArray[0].trim().toLowerCase();
                secretTokens[key] = valArray[1].trim();
                console.log(`Secret token input found [${key}]`); 
            }
        }
    }
    tl.debug(`secretTokens: found [${Object.keys(secretTokens).length}] tokens`);    
開發者ID:nphmuller,項目名稱:cols-agent-tasks,代碼行數:31,代碼來源:replaceTokens.ts

示例3: while

    while (parentPath !== current) {
        ++count;
        current = parentPath;
        parentPath = path.dirname(current);
    }

    return count;
}

// contents is a multiline input containing glob patterns
var contents: string[] = tl.getDelimitedInput('Contents', '\n');
var artifactName: string = tl.getInput('ArtifactName');
var artifactType: string = tl.getInput('ArtifactType');
// targetPath is used for file shares
var targetPath: string = tl.getInput('TargetPath');
var findRoot: string = tl.getPathInput('CopyRoot');

if (!artifactName) {
    // nothing to do
    tl.warning('Artifact name is not specified.');
}
else if (!artifactType) {
    // nothing to do
    tl.warning('Artifact type is not specified.');
}
else {
    artifactType = artifactType.toLowerCase();
    // back compat. remove after 82
    if (artifactType === "localpath") {
        artifactType = "filepath";
    }
開發者ID:AnubhavAggarwal,項目名稱:vso-agent-tasks,代碼行數:31,代碼來源:publishBuildArtifacts.ts


注:本文中的vso-task-lib.getPathInput函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。