@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.
@@ -1 +1 @@
1
- 5.3.15
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.15",
3
+ "version": "5.3.18",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -14,4 +14,4 @@ import { Cmp1Component } from './components/cmp1/cmp1.component';
14
14
  exports: [
15
15
  ],
16
16
  })
17
- export class CommonModule { }
17
+ export class Module { }
@@ -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
- const jsonFileDev = require(fileDev);
1513
- const jsonFileBuild = require(fileBuild);
1514
- const jsonFileBuildSpec = require(fileBuildSpec);
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) {
@@ -487,6 +487,7 @@ module.exports.registerCsdrPackage = (pkg, isRemote, rootPkgScope, rootPkgName)
487
487
  "translationScopes": "eui,csdr,cc,mywp",
488
488
  "skipLint": true,
489
489
  "skipTest": true,
490
+ "sonarScanner": false,
490
491
  "envTargetActive": true
491
492
  },
492
493
  "release": {