@eui/tools 5.3.88 → 5.3.90
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
|
-
5.3.
|
|
1
|
+
5.3.90
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 5.3.90 (2022-11-03)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* missing angularpackage def for registration - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([b84f5db0](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b84f5db0f8dcc1d7633e734bbb7d71561a8db2f2))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.3.89 (2022-10-31)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* totally skip the external sources injection when not setup in project config - MWP-8915 [MWP-8915](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8915) ([99bf16ca](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/99bf16cac5d7bbbfe61d0a474de2e0a5bee48dc0))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 5.3.88 (2022-10-31)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -183,14 +183,12 @@ module.exports.injectExternalAppSources = (project, build = false) => {
|
|
|
183
183
|
|
|
184
184
|
tools.logTitle(`Injecting project external application sources for : ${project.name}`);
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
.
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
return;
|
|
191
|
-
}
|
|
192
|
-
})
|
|
186
|
+
if (!project.externalSources) {
|
|
187
|
+
tools.logInfo('No external app sources setup...skipping');
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
193
190
|
|
|
191
|
+
return Promise.resolve()
|
|
194
192
|
.then(() => {
|
|
195
193
|
if (!build) {
|
|
196
194
|
// removing previously injected content, except assets
|