@eui/tools 6.21.50 → 6.21.52
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 +18 -0
- package/package.json +1 -1
- package/sandbox.js +1 -1
- package/scripts/csdr/init/remotes/19.x/full/options/participant/app/module.component.ts +5 -0
- package/scripts/csdr/init/remotes.js +1 -0
- package/scripts/csdr/install/composite-core.js +6 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.52
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.52 (2025-03-25)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* participant skeleton adaptation due to standalone: true by default REGIOCCINT-1768 [REGIOCCINT-1768](https://webgate.ec.europa.eu/CITnet/jira/browse/REGIOCCINT-1768) ([751cd303](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/751cd303a1d1999684d3cf400c0d9ca329777070))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.51 (2025-03-18)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* added debug logs for deps fetching for host per environment sequence - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([42b239bb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/42b239bb06eb41ecfa6fad06c561e6b4f6104426))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.50 (2025-03-18)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1527,7 +1527,7 @@ const publishUtils = require('./scripts/utils/publish/publish-utils');
|
|
|
1527
1527
|
Promise.resolve()
|
|
1528
1528
|
.then(() => {
|
|
1529
1529
|
const prj = configUtils.projects.getCsdrProject('my-workplace-host');
|
|
1530
|
-
const envTarget = '
|
|
1530
|
+
const envTarget = 'ACC';
|
|
1531
1531
|
return installUtils.projects.getDeps(prj, envTarget);
|
|
1532
1532
|
})
|
|
1533
1533
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, ElementRef, inject, OnDestroy, OnInit, signal } from '@angular/core';
|
|
2
|
+
import { NgIf } from '@angular/common';
|
|
2
3
|
|
|
3
4
|
import { Subscription } from 'rxjs';
|
|
4
5
|
import { first } from 'rxjs/operators';
|
|
@@ -10,14 +11,18 @@ import { EuiLabelModule } from '@eui/components/eui-label';
|
|
|
10
11
|
|
|
11
12
|
import { ElementLifeCycleService, ElementSetupService } from '@csdr/integration/element';
|
|
12
13
|
|
|
14
|
+
import { @root.common.module@ as RootCommonModule } from '@root.npm.pkg@';
|
|
15
|
+
|
|
13
16
|
type StatusType = 'Loading' | 'Loaded' | 'Failed';
|
|
14
17
|
|
|
15
18
|
@Component({
|
|
16
19
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
17
20
|
imports: [
|
|
21
|
+
NgIf,
|
|
18
22
|
EuiBlockContentModule,
|
|
19
23
|
EuiButtonModule,
|
|
20
24
|
EuiLabelModule,
|
|
25
|
+
RootCommonModule,
|
|
21
26
|
],
|
|
22
27
|
template: `
|
|
23
28
|
@if (status() === 'Loaded') {
|
|
@@ -326,6 +326,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfigFlag = tru
|
|
|
326
326
|
});
|
|
327
327
|
}
|
|
328
328
|
tools.replaceInPath(remoteSrcPath, '<!-- BLOCK_CONTAINER_PLACEHOLDER -->', blockContainerPlaceholder);
|
|
329
|
+
tools.replaceInPath(remoteSrcPath, "@root.npm.pkg@", remote.skeletonConfig.rootNpmPkg);
|
|
329
330
|
}
|
|
330
331
|
}
|
|
331
332
|
|
|
@@ -58,7 +58,11 @@ const getCompositeDepsByEnv = (compositePath, envTarget, envsMetadata, prevEnv,
|
|
|
58
58
|
prevEnvVersions = versionsMetadata.versions.filter(v => v.envTarget === prevEnv && parseInt(v.packages['@eui/deps-base']) === parseInt(euiVersion));
|
|
59
59
|
|
|
60
60
|
if (prevEnvVersions.length > 0) {
|
|
61
|
-
|
|
61
|
+
const prevEnvMetadata = prevEnvVersions[prevEnvVersions.length - 1];
|
|
62
|
+
|
|
63
|
+
tools.logInfo(`Taking dependencies stored in metadata for previous env: ${prevEnv}`);
|
|
64
|
+
console.log(prevEnvMetadata);
|
|
65
|
+
prevEnvDeps = prevEnvMetadata.packages;
|
|
62
66
|
} else {
|
|
63
67
|
throw new Error(`
|
|
64
68
|
${prevEnv} dependencies not found for ${currentEnv} and euiVersion ${euiVersion} dependencies fetch, ensure that the project/remote has been delivered to a previous environment first
|
|
@@ -148,7 +152,7 @@ module.exports.getCompositeDeps = (
|
|
|
148
152
|
versionsMetadata
|
|
149
153
|
) => {
|
|
150
154
|
tools.logInfo('install.compositeCore.getCompositeDeps');
|
|
151
|
-
tools.logInfo(`Processing installation at : ${compositePath} for env: ${envTarget}`);
|
|
155
|
+
tools.logInfo(`Processing installation at : ${compositePath} for env: ${envTarget} - euiVersion: ${euiVersion}`);
|
|
152
156
|
|
|
153
157
|
return Promise.resolve()
|
|
154
158
|
// getting root composite - dependencies-composite.json content
|