Skip to content

Commit

Permalink
Merge pull request #11405 from microsoft/users/jtpetty/update-task-lib
Browse files Browse the repository at this point in the history
Update cmdline and bash taskes to use latest task-lib
  • Loading branch information
Tommy Petty authored Oct 7, 2019
2 parents 41e2cf6 + 8a7dde1 commit 3fe133e
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions Tasks/BashV3/bash.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import fs = require('fs');
import path = require('path');
import os = require('os');
import tl = require('vsts-task-lib/task');
import tr = require('vsts-task-lib/toolrunner');
import tl = require('azure-pipelines-task-lib/task');
import tr = require('azure-pipelines-task-lib/toolrunner');
var uuidV4 = require('uuid/v4');

const noProfile = tl.getBoolInput('noProfile');
Expand Down
32 changes: 16 additions & 16 deletions Tasks/BashV3/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Tasks/BashV3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"dependencies": {
"uuid": "^3.0.1",
"vsts-task-lib": "2.7.0"
"azure-pipelines-task-lib": "2.9.3"
}
}
4 changes: 2 additions & 2 deletions Tasks/CmdLineV2/cmdline.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import fs = require('fs');
import path = require('path');
import os = require('os');
import tl = require('vsts-task-lib/task');
import tr = require('vsts-task-lib/toolrunner');
import tl = require('azure-pipelines-task-lib/task');
import tr = require('azure-pipelines-task-lib/toolrunner');
var uuidV4 = require('uuid/v4');

async function run() {
Expand Down
26 changes: 13 additions & 13 deletions Tasks/CmdLineV2/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Tasks/CmdLineV2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"dependencies": {
"uuid": "^3.0.1",
"vsts-task-lib": "2.7.0"
"azure-pipelines-task-lib": "2.7.0"
}
}

0 comments on commit 3fe133e

Please sign in to comment.