@eui/tools 5.3.44 → 5.3.46
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.46
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 5.3.46 (2022-09-15)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* memory leaks MWP-8671 [MWP-8671](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8671) ([0fdd6154](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0fdd6154924fc73ad31ac3e66414b1b8ce927c38))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.3.45 (2022-09-14)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* unhandled exception at initial clone and over exception operations - EUI-41078 [EUI-41078](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-41078) ([122de54c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/122de54c0eb840008b86ffc9de7a212e848dca3a))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 5.3.44 (2022-09-08)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgModule, Injector } from '@angular/core';
|
|
1
|
+
import { NgModule, Injector, DoBootstrap, ApplicationRef } from '@angular/core';
|
|
2
2
|
import { BrowserModule } from '@angular/platform-browser';
|
|
3
3
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
4
4
|
import { HttpClientModule } from '@angular/common/http';
|
|
@@ -79,12 +79,12 @@ import { ModuleComponent } from './module.component';
|
|
|
79
79
|
...DEFAULT_MAPPED_PROVIDERS,
|
|
80
80
|
],
|
|
81
81
|
})
|
|
82
|
-
export class AppModule {
|
|
82
|
+
export class AppModule implements DoBootstrap {
|
|
83
83
|
|
|
84
84
|
constructor(private injector: Injector) {
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
ngDoBootstrap() {
|
|
87
|
+
ngDoBootstrap(appRef: ApplicationRef): void {
|
|
88
88
|
const elementSampleEui = createCustomElement(ModuleComponent, { injector: this.injector });
|
|
89
89
|
try {
|
|
90
90
|
customElements.define(appConfig.global.elementName, elementSampleEui);
|
|
@@ -633,7 +633,16 @@ module.exports.sendErrorNotification = (pkg, exception, pkgMetadata) => {
|
|
|
633
633
|
if (exception !== 'PACKAGE_LOCKED') {
|
|
634
634
|
return metadataUtils.package.unlockPackage(pkg);
|
|
635
635
|
}
|
|
636
|
-
})
|
|
636
|
+
})
|
|
637
|
+
|
|
638
|
+
.catch((e) => {
|
|
639
|
+
throw e;
|
|
640
|
+
})
|
|
641
|
+
})
|
|
642
|
+
|
|
643
|
+
.catch((e) => {
|
|
644
|
+
console.log(e);
|
|
645
|
+
process.exit(1);
|
|
637
646
|
})
|
|
638
647
|
}
|
|
639
648
|
|
|
@@ -47,6 +47,10 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
|
|
|
47
47
|
} else {
|
|
48
48
|
if (configEnvTarget && typeof (configEnvTarget) === 'boolean') {
|
|
49
49
|
configEnvTarget = null;
|
|
50
|
+
|
|
51
|
+
if (currentProject.build && currentProject.build.csdrFileReplacement) {
|
|
52
|
+
configEnvTarget = envTarget;
|
|
53
|
+
}
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
56
|
|
|
@@ -187,6 +191,10 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
|
|
|
187
191
|
isOptimizedBuild = true;
|
|
188
192
|
}
|
|
189
193
|
|
|
194
|
+
if (envTarget && currentProject.build && currentProject.build.devBuildOptimized) {
|
|
195
|
+
isOptimizedBuild = true;
|
|
196
|
+
}
|
|
197
|
+
|
|
190
198
|
if (!envTarget && !isSnapshot) {
|
|
191
199
|
isOptimizedBuild = true;
|
|
192
200
|
}
|