@eui/tools 6.11.3 → 6.11.5
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.11.
|
|
1
|
+
6.11.5
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.11.5 (2023-04-17)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted eUI10 resolutions - v10 UI packages failing - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([dc9235ef](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/dc9235ef2b710c81e585a5b058f97215ec10a00a))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.11.4 (2023-04-17)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted openid-login.js injection if provided within app (sedia v10) - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([d516ee00](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d516ee00aae3abc3d8220dec7a64ea88bd96dcd3))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.11.3 (2023-04-16)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -114,11 +114,16 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
|
|
|
114
114
|
|
|
115
115
|
let { configuration } = tools.getArgs();
|
|
116
116
|
if (configuration !== 'proxy-mock') {
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
117
|
+
if (project.build && project.build.providedOpenidLoginScript) {
|
|
118
|
+
tools.logInfo(`Provided openid-login.js script...skipping copy from eUI distribution`);
|
|
119
|
+
|
|
120
|
+
} else {
|
|
121
|
+
tools.logInfo(`Copying ${nodeModulesPath}/@eui/base/assets/openid/openid-login.js to ${rootTargetFolder}/assets/openid-login.js`);
|
|
122
|
+
tools.copy(
|
|
123
|
+
path.join(nodeModulesPath, '/@eui/base/assets/openid/openid-login.js'),
|
|
124
|
+
path.join(project.paths.angularPath, `${rootTargetFolder}/assets/openid-login.js`)
|
|
125
|
+
);
|
|
126
|
+
}
|
|
122
127
|
} else {
|
|
123
128
|
tools.logInfo(`Clearing ${rootTargetFolder}/assets/openid-login.js`);
|
|
124
129
|
tools.writeFileContent(
|