azure-pipelines-task-lib 3.3.1 → 4.0.0-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -22
- package/README.md +74 -74
- package/Strings/resources.resjson/de-DE/resources.resjson +34 -34
- package/Strings/resources.resjson/es-ES/resources.resjson +34 -34
- package/Strings/resources.resjson/fr-FR/resources.resjson +34 -34
- package/Strings/resources.resjson/ja-JP/resources.resjson +34 -34
- package/ThirdPartyNotice.txt +1114 -1114
- package/internal.d.ts +130 -130
- package/internal.js +885 -885
- package/lib.json +37 -37
- package/mock-answer.d.ts +55 -55
- package/mock-answer.js +41 -41
- package/mock-run.d.ts +44 -44
- package/mock-run.js +92 -92
- package/mock-task.d.ts +111 -111
- package/mock-task.js +447 -447
- package/mock-test.d.ts +28 -28
- package/mock-test.js +298 -298
- package/mock-toolrunner.d.ts +41 -41
- package/mock-toolrunner.js +268 -268
- package/package.json +49 -49
- package/task.d.ts +718 -718
- package/task.js +2003 -2003
- package/taskcommand.d.ts +10 -10
- package/taskcommand.js +103 -103
- package/toolrunner.d.ts +159 -159
- package/toolrunner.js +967 -967
- package/vault.d.ts +10 -10
- package/vault.js +71 -71
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "azure-pipelines-task-lib",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Azure Pipelines Task SDK",
|
|
5
|
-
"main": "./task.js",
|
|
6
|
-
"typings": "./task.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "node make.js build",
|
|
9
|
-
"test": "node make.js test"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "https://github.com/Microsoft/azure-pipelines-task-lib"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"azure-pipelines",
|
|
17
|
-
"agent",
|
|
18
|
-
"build",
|
|
19
|
-
"release",
|
|
20
|
-
"ci-cd",
|
|
21
|
-
"task"
|
|
22
|
-
],
|
|
23
|
-
"author": "Microsoft",
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/Microsoft/azure-pipelines-task-lib/issues"
|
|
27
|
-
},
|
|
28
|
-
"homepage": "https://github.com/Microsoft/azure-pipelines-task-lib",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"minimatch": "3.0.5",
|
|
31
|
-
"mockery": "^1.7.0",
|
|
32
|
-
"q": "^1.5.1",
|
|
33
|
-
"semver": "^5.1.0",
|
|
34
|
-
"shelljs": "^0.8.5",
|
|
35
|
-
"sync-request": "6.1.0",
|
|
36
|
-
"uuid": "^3.0.1"
|
|
37
|
-
},
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@types/minimatch": "3.0.3",
|
|
40
|
-
"@types/mocha": "^
|
|
41
|
-
"@types/mockery": "^1.4.29",
|
|
42
|
-
"@types/node": "^
|
|
43
|
-
"@types/q": "^1.5.4",
|
|
44
|
-
"@types/semver": "^7.3.4",
|
|
45
|
-
"@types/shelljs": "^0.8.8",
|
|
46
|
-
"mocha": "
|
|
47
|
-
"typescript": "^4.0.0"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "azure-pipelines-task-lib",
|
|
3
|
+
"version": "4.0.0-preview",
|
|
4
|
+
"description": "Azure Pipelines Task SDK",
|
|
5
|
+
"main": "./task.js",
|
|
6
|
+
"typings": "./task.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "node make.js build",
|
|
9
|
+
"test": "node make.js test"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/Microsoft/azure-pipelines-task-lib"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"azure-pipelines",
|
|
17
|
+
"agent",
|
|
18
|
+
"build",
|
|
19
|
+
"release",
|
|
20
|
+
"ci-cd",
|
|
21
|
+
"task"
|
|
22
|
+
],
|
|
23
|
+
"author": "Microsoft",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/Microsoft/azure-pipelines-task-lib/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/Microsoft/azure-pipelines-task-lib",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"minimatch": "3.0.5",
|
|
31
|
+
"mockery": "^1.7.0",
|
|
32
|
+
"q": "^1.5.1",
|
|
33
|
+
"semver": "^5.1.0",
|
|
34
|
+
"shelljs": "^0.8.5",
|
|
35
|
+
"sync-request": "6.1.0",
|
|
36
|
+
"uuid": "^3.0.1"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/minimatch": "3.0.3",
|
|
40
|
+
"@types/mocha": "^9.1.1",
|
|
41
|
+
"@types/mockery": "^1.4.29",
|
|
42
|
+
"@types/node": "^16.11.39",
|
|
43
|
+
"@types/q": "^1.5.4",
|
|
44
|
+
"@types/semver": "^7.3.4",
|
|
45
|
+
"@types/shelljs": "^0.8.8",
|
|
46
|
+
"mocha": "^9.2.2",
|
|
47
|
+
"typescript": "^4.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|