Skip to content

Commit 2365baa

Browse files
Danny McCormickstephenmichaelf
andauthored
move codecoverage-tools to common package (#13487)
* move codecoverage-tools to common package * Remove task directory * Add back codeanalysis-common (accidentally removed wrong package) Co-authored-by: Stephen Franceschelli <[email protected]>
1 parent ee4a45e commit 2365baa

File tree

115 files changed

+6225
-2563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+6225
-2563
lines changed

Tasks/ANTV1/anttask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import * as Q from "q";
55
import * as tl from 'azure-pipelines-task-lib/task';
66

77
import * as javacommons from 'azure-pipelines-tasks-java-common/java-common';
8-
import * as ccUtils from 'codecoverage-tools/codecoverageutilities';
9-
import {CodeCoverageEnablerFactory} from 'codecoverage-tools/codecoveragefactory';
8+
import * as ccUtils from 'azure-pipelines-tasks-codecoverage-tools/codecoverageutilities';
9+
import {CodeCoverageEnablerFactory} from 'azure-pipelines-tasks-codecoverage-tools/codecoveragefactory';
1010

1111
tl.setResourcePath(path.join(__dirname, 'task.json'));
1212

Tasks/ANTV1/make.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
{
2-
"common": [
3-
{
4-
"module": "../Common/codecoverage-tools",
5-
"type": "node",
6-
"compile": true
7-
}
8-
],
92
"rm": [
103
{
114
"items": [
125
"node_modules/azure-pipelines-tasks-java-common/node_modules/azure-pipelines-task-lib",
13-
"node_modules/codecoverage-tools/node_modules/azure-pipelines-task-lib"
6+
"node_modules/azure-pipelines-tasks-codecoverage-tools/node_modules/azure-pipelines-task-lib"
147
],
158
"options": "-Rf"
169
}

Tasks/ANTV1/package-lock.json

Lines changed: 14 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/ANTV1/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
"url": "https://github.com/Microsoft/vso-agent-tasks/issues"
88
},
99
"dependencies": {
10-
"@types/node": "^6.0.101",
11-
"@types/q": "^1.0.7",
1210
"azure-pipelines-task-lib": "^2.8.0",
1311
"azure-pipelines-tasks-java-common": "1.0.0",
14-
"codecoverage-tools": "file:../../_build/Tasks/Common/codecoverage-tools-1.0.0.tgz",
12+
"azure-pipelines-tasks-codecoverage-tools": "1.0.0",
1513
"xml2js": "^0.4.16"
1614
}
1715
}

Tasks/ANTV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 175,
21-
"Patch": 0
21+
"Patch": 1
2222
},
2323
"demands": [
2424
"ant"

Tasks/ANTV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 175,
21-
"Patch": 0
21+
"Patch": 1
2222
},
2323
"demands": [
2424
"ant"
File renamed without changes.

0 commit comments

Comments
 (0)