vsts-task-starter
Version:
Creates a starting project structure for building a Node.js based Visual Studio Team Services task.
20 lines (18 loc) • 334 B
JavaScript
/*
* The purpose of this task is to run.
*/
var path = require('path');
var tl = require('vsts-task-lib');
/*
* The entry point for the task.
*/
function run() {
'use strict';
}
/*
* Exports the portions of the file we want to share with files that require
* it.
*/
module.exports = {
run: run
};