@eui/tools 5.3.15 → 5.3.18
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 +27 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend-option-route/src/lib/module.ts +1 -1
- package/scripts/csdr/cli/skeletons/package/frontend-option-route/src/lib/routing.module.ts +1 -1
- package/scripts/csdr/config/angular.js +18 -3
- package/scripts/csdr/config/global.js +1 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.18
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## 5.3.18 (2022-06-20)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* set sonar scanner to false on new remote creation - MWP-8187 [MWP-8187](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8187) ([f52a6d25](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f52a6d25e3b118a010b18fccbe0b198820b7e774))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.3.17 (2022-06-20)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* csdr package init wrong declarations of routed package - MWP-8187 [MWP-8187](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8187) ([aa939d6f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/aa939d6fd6c21d865080f5fbcdb4a8958a7c2631))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
19
|
+
## 5.3.16 (2022-06-20)
|
|
20
|
+
|
|
21
|
+
##### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **other:**
|
|
24
|
+
* package creation on empty csdr-root - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([236ca4fa](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/236ca4faa7398dd3083e49660e3eeb77b9639f1a))
|
|
25
|
+
|
|
26
|
+
* * *
|
|
27
|
+
* * *
|
|
1
28
|
## 5.3.15 (2022-06-20)
|
|
2
29
|
|
|
3
30
|
##### Chores
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
|
|
|
2
2
|
import { RouterModule, Routes } from '@angular/router';
|
|
3
3
|
import { Cmp1Component } from './components/cmp1/cmp1.component';
|
|
4
4
|
|
|
5
|
-
const routes: Routes = [
|
|
5
|
+
export const routes: Routes = [
|
|
6
6
|
{ path: '', component: Cmp1Component },
|
|
7
7
|
];
|
|
8
8
|
|
|
@@ -1509,9 +1509,24 @@ module.exports.registerModulePaths = (pkg, isReset) => {
|
|
|
1509
1509
|
tools.copy(fileDev, fileBuildSpec);
|
|
1510
1510
|
}
|
|
1511
1511
|
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1512
|
+
let jsonFileDev, jsonFileBuild, jsonFileBuildSpec;
|
|
1513
|
+
if (!tools.isFileExists(fileDev)) {
|
|
1514
|
+
jsonFileDev = tsConfigDef;
|
|
1515
|
+
} else {
|
|
1516
|
+
jsonFileDev = require(fileDev);
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
if (!tools.isFileExists(fileBuild)) {
|
|
1520
|
+
jsonFileBuild = tsConfigDef;
|
|
1521
|
+
} else {
|
|
1522
|
+
jsonFileBuild = require(fileBuild);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
if (!tools.isFileExists(fileBuildSpec)) {
|
|
1526
|
+
jsonFileBuildSpec = tsConfigDef;
|
|
1527
|
+
} else {
|
|
1528
|
+
jsonFileBuildSpec = require(fileBuildSpec);
|
|
1529
|
+
}
|
|
1515
1530
|
|
|
1516
1531
|
var pathBase = './packages';
|
|
1517
1532
|
if (pkg.child) {
|