@clickview/ship-it 0.0.13 → 0.0.14
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.
|
@@ -10,4 +10,5 @@ exports.TeamCityBuildIds = (_a = {},
|
|
|
10
10
|
_a[constants_1.PROJECT_NAMES.frontend.cloud] = 'ClickViewCloud_BuildAndPackageDocker',
|
|
11
11
|
_a[constants_1.PROJECT_NAMES.frontend.reports] = 'Web_AnalyticsWeb_BuildAndPackageDocker',
|
|
12
12
|
_a[constants_1.PROJECT_NAMES.frontend.lite] = 'ClickViewLiteWeb_BuildAndPackageDocker',
|
|
13
|
+
_a[constants_1.PROJECT_NAMES.backend.auth] = 'auth_web_B',
|
|
13
14
|
_a);
|
|
@@ -71,7 +71,9 @@ var ROOT_DIRECTORIES = {
|
|
|
71
71
|
// Online
|
|
72
72
|
109: 'src/ClickView.Web.Online.Pages',
|
|
73
73
|
// Reports
|
|
74
|
-
970: 'src/ClickView.Analytics.Web'
|
|
74
|
+
970: 'src/ClickView.Analytics.Web',
|
|
75
|
+
// Auth
|
|
76
|
+
54: 'src/ClickView.Auth'
|
|
75
77
|
};
|
|
76
78
|
var InstallPackagesTask = /** @class */ (function () {
|
|
77
79
|
function InstallPackagesTask(service) {
|
package/lib/src/utils/Commits.js
CHANGED
|
@@ -38,6 +38,8 @@ exports.Commits = {
|
|
|
38
38
|
return false;
|
|
39
39
|
if (commit.title.toLowerCase().includes('merge') && commit.title.includes('master') && commit.title.includes('dev'))
|
|
40
40
|
return false;
|
|
41
|
+
if (commit.title === 'Merge remote-tracking branch \'origin/dev\' into dev')
|
|
42
|
+
return false;
|
|
41
43
|
return !mergeRequestLookup[commit.id];
|
|
42
44
|
});
|
|
43
45
|
if (invalidCommits.length) {
|