Added 3 more tasks and refactored code to use a standalone shared npm package (installed locally from a tarball).

This commit is contained in:
2026-02-25 08:10:03 +01:00
parent 1ef0999a3e
commit d08e6c8958
30 changed files with 3457 additions and 91 deletions

23
task/GetBlob/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "get-blob-task",
"version": "1.0.0",
"private": true,
"author": "Slawomir Koszewski",
"license": "MIT",
"description": "Azure DevOps task to download a blob from Azure Storage to local file.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist"
},
"dependencies": {
"azure-pipelines-task-lib": "^5.2.6"
},
"overrides": {
"minimatch": "3.1.3"
},
"devDependencies": {
"@types/node": "^20.11.30",
"typescript": "^5.4.5"
}
}