Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
use new task library
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyutkarsh committed Feb 23, 2019
1 parent 55db93f commit 67ca75a
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 31 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"repository": {
"type": "git",
"url": "https://onlyutkarsh.visualstudio.com/DefaultCollection/VSTSExtensions/_git/gitlab-artifact-integration"
"url": "https://github.com/onlyutkarsh/gitlab-integration.git"
},
"keywords": [
"vsts",
Expand Down Expand Up @@ -54,4 +54,4 @@
"typescript": "^3.0.1",
"yargs": "~13.2.1"
}
}
}
2 changes: 1 addition & 1 deletion tasks/.taskkey
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5e084fdf-7994-49dc-8d9a-e7879bbc58ce
d9eaeb78-a2c1-41bd-ada6-02b358fbf372
4 changes: 2 additions & 2 deletions tasks/DownloadRepo/DownloadRepoV1/gitwrapper.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as tl from "vsts-task-lib";
import * as trm from "vsts-task-lib/toolrunner";
import * as tl from "azure-pipelines-task-lib";
import * as trm from "azure-pipelines-task-lib/toolrunner";
import * as events from "events";
import * as path from "path";

Expand Down
2 changes: 1 addition & 1 deletion tasks/DownloadRepo/DownloadRepoV1/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as tl from "vsts-task-lib";
import * as tl from "azure-pipelines-task-lib";
import * as url from "url";
import * as path from "path";
import { GitWrapper, IGitExecOptions } from "./gitwrapper";
Expand Down
44 changes: 22 additions & 22 deletions tasks/DownloadRepo/DownloadRepoV1/package-lock.json

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

10 changes: 7 additions & 3 deletions tasks/DownloadRepo/DownloadRepoV1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
"version": "0.0.0",
"description": "download artifact task",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/onlyutkarsh/gitlab-integration.git"
},
"scripts": {
"clean-task": "npm dedupe && npm prune --production"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"azure-pipelines-task-lib": "~2.7.7",
"events": "^3.0.0",
"fs-extra": "^7.0.0",
"path": "^0.12.7",
"vsts-task-lib": "^2.6.0"
"fs-extra": "^7.0.1",
"path": "^0.12.7"
}
}

0 comments on commit 67ca75a

Please sign in to comment.