Skip to content

Commit

Permalink
Migrating VsTestPlatformInstaller Task to Node10 (#16951)
Browse files Browse the repository at this point in the history
* Migrating VsTestPlatformInstaller Task to Node10

* updating the version according to current sprint

* Reverted global package-lock.json

* updated version to current sprint for task.json

Co-authored-by: triptijain2112 <[email protected]>
Co-authored-by: Max Podriezov <[email protected]>
  • Loading branch information
3 people authored Oct 20, 2022
1 parent ff65ee0 commit c79806a
Show file tree
Hide file tree
Showing 7 changed files with 448 additions and 34 deletions.
6 changes: 3 additions & 3 deletions Tasks/VsTestPlatformToolInstallerV1/Tests/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/VsTestPlatformToolInstallerV1/Tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
},
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"devDependencies": {
"@types/mocha": "^5.2.0"
"@types/mocha": "^5.2.7"
}
}
436 changes: 427 additions & 9 deletions Tasks/VsTestPlatformToolInstallerV1/package-lock.json

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions Tasks/VsTestPlatformToolInstallerV1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"dependencies": {
"performance-now": "0.2.0",
"azure-pipelines-task-lib": "2.8.0",
"azure-pipelines-task-lib": "^3.1.7",
"vsts-task-tool-lib": "0.4.1",
"@types/node": "^6.0.101",
"@types/node": "^10.17.0",
"@types/mocha": "^5.2.7",
"@types/uuid": "^8.3.0",
"@types/q": "^1.5.0"
},
"devDependencies": {
"typescript": "4.0.2"
}
}
10 changes: 5 additions & 5 deletions Tasks/VsTestPlatformToolInstallerV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"Agent",
"DeploymentGroup"
],
"minimumAgentVersion": "2.103.0",
"minimumAgentVersion": "2.144.0",
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 151,
"Patch": 3
"Minor": 212,
"Patch": 0
},
"satisfies": [
"VsTest"
Expand Down Expand Up @@ -106,7 +106,7 @@
}
],
"execution": {
"Node": {
"Node10": {
"target": "vstestplatformtoolinstaller.js",
"argumentFormat": ""
}
Expand Down Expand Up @@ -135,4 +135,4 @@
"ExpectedTempToBeSet": "Expected Agent.TempDirectory to be set.",
"ParsedVersion": "Parsed the version of the Microsoft.Testplatform package to be %s from the file name. Please ensure that the file name is the same as when the .nupkg file is downloaded from the official nuget feed."
}
}
}
10 changes: 5 additions & 5 deletions Tasks/VsTestPlatformToolInstallerV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"Agent",
"DeploymentGroup"
],
"minimumAgentVersion": "2.103.0",
"minimumAgentVersion": "2.144.0",
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 151,
"Patch": 3
"Minor": 212,
"Patch": 0
},
"satisfies": [
"VsTest"
Expand Down Expand Up @@ -106,7 +106,7 @@
}
],
"execution": {
"Node": {
"Node10": {
"target": "vstestplatformtoolinstaller.js",
"argumentFormat": ""
}
Expand Down Expand Up @@ -135,4 +135,4 @@
"ExpectedTempToBeSet": "ms-resource:loc.messages.ExpectedTempToBeSet",
"ParsedVersion": "ms-resource:loc.messages.ParsedVersion"
}
}
}
9 changes: 0 additions & 9 deletions Tasks/VsTestPlatformToolInstallerV1/typings.json

This file was deleted.

0 comments on commit c79806a

Please sign in to comment.