@eui/tools 4.19.1 → 4.19.2

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
- 4.19.1
1
+ 4.19.2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.19.2 (2022-01-25)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * hotfix pipeline metadata issues - added missing v10 pkg skeleton files - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([bb59cdbf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bb59cdbf98e13cca49017c6268318c4573bd73b4))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.19.1 (2022-01-21)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.19.1",
3
+ "version": "4.19.2",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -0,0 +1,5 @@
1
+ describe('First test', () => {
2
+ it('should work', () => {
3
+ expect(true).toBe(true);
4
+ });
5
+ });
@@ -0,0 +1 @@
1
+ Hello from <strong>@module.name@-cmp1</strong>
@@ -0,0 +1,25 @@
1
+ import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { Cmp1Component } from './cmp1.component';
4
+
5
+ describe('ModuleComponent', () => {
6
+ let component: Cmp1Component;
7
+ let fixture: ComponentFixture<Cmp1Component>;
8
+
9
+ beforeEach(async(() => {
10
+ TestBed.configureTestingModule({
11
+ declarations: [Cmp1Component],
12
+ })
13
+ .compileComponents();
14
+ }));
15
+
16
+ beforeEach(() => {
17
+ fixture = TestBed.createComponent(Cmp1Component);
18
+ component = fixture.componentInstance;
19
+ fixture.detectChanges();
20
+ });
21
+
22
+ it('should create', () => {
23
+ expect(component).toBeTruthy();
24
+ });
25
+ });
@@ -0,0 +1,14 @@
1
+ import { Component, OnInit } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: '@module.scope.string@-cmp1-component',
5
+ templateUrl: './cmp1.component.html',
6
+ })
7
+ export class Cmp1Component implements OnInit {
8
+
9
+ constructor() { }
10
+
11
+ ngOnInit() {
12
+ }
13
+
14
+ }
@@ -222,7 +222,7 @@ module.exports.storeMetadata = (
222
222
  if (pkgIdxHOTFIX > -1) {
223
223
  packagesHotfixTag[pkgIdxHOTFIX] = newPackage;
224
224
  } else {
225
- if (!packagesNextTag) {
225
+ if (!packagesHotfixTag) {
226
226
  packagesHotfixTag = [];
227
227
  }
228
228
  packagesHotfixTag.push(newPackage);