@eui/tools 5.3.16 → 5.3.17

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.16
1
+ 5.3.17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.17 (2022-06-20)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * 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))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.16 (2022-06-20)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.16",
3
+ "version": "5.3.17",
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