@eui/tools 5.3.8 → 5.3.9
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/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui10/src/environments/environment.ts +0 -12
- package/scripts/csdr/cli/skeletons/package/frontend-remote-eui10/src/test.ts.TO_REPLACE +2 -2
- package/scripts/csdr/release/app/release-app.js +5 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.9
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.9 (2022-06-10)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted app release taking care of support/develop merge - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([900f3723](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/900f3723d75b83e03fd5c80f6c9bb17602e9c8c2))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.8 (2022-06-09)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
package/scripts/csdr/cli/skeletons/package/frontend-remote-eui10/src/environments/environment.ts
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
// This file can be replaced during build by using the `fileReplacements` array.
|
|
2
|
-
// `ng build ---prod` replaces `environment.ts` with `environment.prod.ts`.
|
|
3
|
-
// The list of file replacements can be found in `angular.json`.
|
|
4
|
-
|
|
5
1
|
export const environment = {
|
|
6
2
|
production: false,
|
|
7
3
|
};
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
* In development mode, to ignore zone related error stack frames such as
|
|
11
|
-
* `zone.run`, `zoneDelegate.invokeTask` for easier debugging, you can
|
|
12
|
-
* import the following file, but please comment it out in production mode
|
|
13
|
-
* because it will have performance impact when throw error
|
|
14
|
-
*/
|
|
15
|
-
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
|
|
@@ -4,7 +4,7 @@ import 'zone.js/dist/zone-testing';
|
|
|
4
4
|
import { getTestBed } from '@angular/core/testing';
|
|
5
5
|
import {
|
|
6
6
|
BrowserDynamicTestingModule,
|
|
7
|
-
platformBrowserDynamicTesting
|
|
7
|
+
platformBrowserDynamicTesting,
|
|
8
8
|
} from '@angular/platform-browser-dynamic/testing';
|
|
9
9
|
|
|
10
10
|
declare const require: any;
|
|
@@ -12,7 +12,7 @@ declare const require: any;
|
|
|
12
12
|
// First, initialize the Angular testing environment.
|
|
13
13
|
getTestBed().initTestEnvironment(
|
|
14
14
|
BrowserDynamicTestingModule,
|
|
15
|
-
platformBrowserDynamicTesting()
|
|
15
|
+
platformBrowserDynamicTesting(),
|
|
16
16
|
);
|
|
17
17
|
// Then we find all the tests.
|
|
18
18
|
const context = require.context('./', true, /\.spec\.ts$/);
|
|
@@ -348,6 +348,11 @@ module.exports.run = () => {
|
|
|
348
348
|
return utils.git.mergeMasterToDevelop(project, project.folder);
|
|
349
349
|
}
|
|
350
350
|
}
|
|
351
|
+
|
|
352
|
+
if (isSupportBranch && project.build && project.build.supportSnapshotBranch) {
|
|
353
|
+
utils.tools.logInfo('Branch is support / supportSnapshotBranch config detected');
|
|
354
|
+
return utils.git.mergeSupportToSupportDevelop(project, project.folder, branch, project.build.supportSnapshotBranch);
|
|
355
|
+
}
|
|
351
356
|
}
|
|
352
357
|
})
|
|
353
358
|
|