@eui/tools 4.15.6 → 4.15.7
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
|
-
4.15.
|
|
1
|
+
4.15.7
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.15.7 (2021-09-16)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* keep the default openid-login-config.json file for replacement of dynamic assets/config env files - EUI-2999 [EUI-2999](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-2999) ([a1ddc333](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a1ddc333ec413f4cbbb4e59d8f119d106f5b307d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.15.6 (2021-09-14)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -131,9 +131,8 @@ module.exports.injectAppConfig = (project, configEnvTarget, build) => {
|
|
|
131
131
|
if (build) {
|
|
132
132
|
rootTargetFolder = 'dist';
|
|
133
133
|
}
|
|
134
|
-
|
|
135
|
-
tools.
|
|
136
|
-
tools.copy(envFilePath, path.join(project.paths.angularPath, `${rootTargetFolder}/assets/config/env-json-config.json`));
|
|
134
|
+
tools.logInfo(`Replacing default ${rootTargetFolder}/assets/openid-login-config.json file by ${envFilePath} content`);
|
|
135
|
+
tools.copy(envFilePath, path.join(project.paths.angularPath, `${rootTargetFolder}/assets/openid-login-config.json`));
|
|
137
136
|
|
|
138
137
|
tools.logSuccess();
|
|
139
138
|
})
|