@eui/tools 6.13.8 → 6.13.10

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.
@@ -1 +1 @@
1
- 6.13.8
1
+ 6.13.10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.13.10 (2023-11-22)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * added pipelineId to slack release package - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([551b97f2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/551b97f2be80074daac727e3f58ddb6795f879bc))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.13.9 (2023-11-15)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * adapted remote build for v17 - EUI-7843 [EUI-7843](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7843) ([bcc90f1c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bcc90f1cb95bf13c9d747a9f143304f1a93d5d8a))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.13.8 (2023-11-13)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.13.8",
3
+ "version": "6.13.10",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -70,7 +70,7 @@
70
70
  /***************************************************************************************************
71
71
  * Zone JS is required by default for Angular itself.
72
72
  */
73
- import 'zone.js/dist/zone'; // Included with Angular CLI.
73
+ import 'zone.js'; // Included with Angular CLI.
74
74
 
75
75
  /***************************************************************************************************
76
76
  * APPLICATION IMPORTS
@@ -12,7 +12,7 @@ const versionUtils = require('../../version/version-utils');
12
12
  const configUtils = require('../../config/config-utils');
13
13
 
14
14
  // GLOBAL ARGS
15
- const { dryRun } = utils.tools.getArgs();
15
+ const { dryRun, pipelineId } = utils.tools.getArgs();
16
16
 
17
17
 
18
18
 
@@ -129,6 +129,10 @@ module.exports.init = (pkg, envTarget, compositeType) => {
129
129
  launchMessage += ` Launching *${pkg.name}* release for branch *${branches.branch}*`;
130
130
  }
131
131
 
132
+ if (pipelineId) {
133
+ launchMessage += `==> Gitlab pipeline ID : *${pipelineId}*`;
134
+ }
135
+
132
136
  return utils.notification.package.sendPackageMessage({
133
137
  package: pkg,
134
138
  text: launchMessage
@@ -1,20 +0,0 @@
1
- // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2
-
3
- import 'zone.js/dist/zone-testing';
4
- import { getTestBed } from '@angular/core/testing';
5
- import {
6
- BrowserDynamicTestingModule,
7
- platformBrowserDynamicTesting,
8
- } from '@angular/platform-browser-dynamic/testing';
9
-
10
- declare const require: any;
11
-
12
- // First, initialize the Angular testing environment.
13
- getTestBed().initTestEnvironment(
14
- BrowserDynamicTestingModule,
15
- platformBrowserDynamicTesting(),
16
- );
17
- // Then we find all the tests.
18
- const context = require.context('./', true, /\.spec\.ts$/);
19
- // And load the modules.
20
- context.keys().map(context);