From 2c94c382696aeab97cb28743a1637ab8d31d494a Mon Sep 17 00:00:00 2001 From: Reuben Bond Date: Tue, 21 Feb 2023 14:37:56 -0800 Subject: [PATCH] Update NodeJS, NPM, and deps --- .gitignore | 1 + .../Mobile.Shopping.HttpAggregator.csproj | 20 ++++----- .../Web.Shopping.HttpAggregator.csproj | 22 +++++----- .../EventBus.Tests/EventBus.Tests.csproj | 2 +- .../EventBusServiceBus.csproj | 2 +- .../IntegrationEventLogEF.csproj | 8 ++-- .../WebHost.Customization.csproj | 10 ++--- .../Basket/Basket.API/Basket.API.csproj | 28 ++++++------- .../Basket.FunctionalTests.csproj | 10 ++--- .../Basket.UnitTests/Basket.UnitTests.csproj | 10 ++--- .../Catalog/Catalog.API/Catalog.API.csproj | 32 +++++++-------- .../Catalog.FunctionalTests.csproj | 6 +-- .../Catalog.UnitTests.csproj | 6 +-- .../Identity/Identity.API/Identity.API.csproj | 38 +++++++++--------- .../AutofacModules/MediatorModule.cs | 7 ---- .../Ordering/Ordering.API/Ordering.API.csproj | 27 ++++++------- .../Ordering.BackgroundTasks.csproj | 6 +-- .../Ordering.Domain/Ordering.Domain.csproj | 3 +- .../Ordering.FunctionalTests.csproj | 6 +-- .../Ordering.Infrastructure.csproj | 7 ++-- .../OrderingContext.cs | 5 +++ .../Ordering.SignalrHub.csproj | 16 ++++---- .../Ordering.UnitTests.csproj | 6 +-- .../Payment/Payment.API/Payment.API.csproj | 10 ++--- .../Webhooks/Webhooks.API/Webhooks.API.csproj | 10 ++--- .../Application.FunctionalTests.csproj | 4 +- src/Web/WebMVC/WebMVC.csproj | 12 +++--- src/Web/WebSPA/Client/angular.json | 3 ++ .../WebSPA/Client/src/modules/app.routes.ts | 2 +- .../src/modules/basket/basket.service.ts | 2 +- .../modules/catalog/catalog.component.scss | 2 +- .../src/modules/catalog/catalog.component.ts | 4 +- .../orders/orders-new/orders-new.component.ts | 6 +-- .../src/modules/orders/orders.component.ts | 4 +- .../shared/services/basket.wrapper.service.ts | 2 +- .../shared/services/configuration.service.ts | 2 +- .../shared/services/signalr.service.ts | 2 +- src/Web/WebSPA/Client/src/styles/globals.scss | 1 - src/Web/WebSPA/WebSPA.csproj | 10 ++--- src/Web/WebSPA/wwwroot/favicon.ico | Bin 0 -> 100441 bytes src/Web/WebStatus/WebStatus.csproj | 8 ++-- src/Web/WebhookClient/WebhookClient.csproj | 4 +- src/package-lock.json | 3 -- 43 files changed, 182 insertions(+), 187 deletions(-) create mode 100644 src/Web/WebSPA/wwwroot/favicon.ico delete mode 100644 src/package-lock.json diff --git a/.gitignore b/.gitignore index 587a6e0a0..8b7a2cbb9 100644 --- a/.gitignore +++ b/.gitignore @@ -281,3 +281,4 @@ pub/ src/**/app.yaml src/**/inf.yaml +.angular/ diff --git a/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj b/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj index 707bd266a..b1a9128aa 100644 --- a/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj +++ b/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj @@ -16,18 +16,18 @@ - - - - - - - + + + + + + + - - + + - + diff --git a/src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj b/src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj index d8104f2d1..ae8aa834d 100644 --- a/src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj +++ b/src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj @@ -16,19 +16,19 @@ - - - - - - - - + + + + + + + + - - + + - + diff --git a/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj b/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj index c1c2ae2db..012a292b3 100644 --- a/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj +++ b/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj @@ -5,7 +5,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj b/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj index 4b02b0d90..1d7f6b663 100644 --- a/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj +++ b/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj b/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj index 0343bb20c..94dbfb66b 100644 --- a/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj +++ b/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj @@ -6,13 +6,13 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHost.Customization.csproj b/src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHost.Customization.csproj index c3bad0c69..5ddb0265b 100644 --- a/src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHost.Customization.csproj +++ b/src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHost.Customization.csproj @@ -10,14 +10,14 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + diff --git a/src/Services/Basket/Basket.API/Basket.API.csproj b/src/Services/Basket/Basket.API/Basket.API.csproj index 1cf1b7dfc..a91691f98 100644 --- a/src/Services/Basket/Basket.API/Basket.API.csproj +++ b/src/Services/Basket/Basket.API/Basket.API.csproj @@ -14,37 +14,37 @@ - - + + - + - - - - + + + + - - + + - + - + - + - - + + diff --git a/src/Services/Basket/Basket.FunctionalTests/Basket.FunctionalTests.csproj b/src/Services/Basket/Basket.FunctionalTests/Basket.FunctionalTests.csproj index 002bd16c4..332c33db6 100644 --- a/src/Services/Basket/Basket.FunctionalTests/Basket.FunctionalTests.csproj +++ b/src/Services/Basket/Basket.FunctionalTests/Basket.FunctionalTests.csproj @@ -16,11 +16,11 @@ - - - - - + + + + + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Basket/Basket.UnitTests/Basket.UnitTests.csproj b/src/Services/Basket/Basket.UnitTests/Basket.UnitTests.csproj index 73a4a773f..9294fd39e 100644 --- a/src/Services/Basket/Basket.UnitTests/Basket.UnitTests.csproj +++ b/src/Services/Basket/Basket.UnitTests/Basket.UnitTests.csproj @@ -7,12 +7,12 @@ - - - - + + + + - + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Catalog/Catalog.API/Catalog.API.csproj b/src/Services/Catalog/Catalog.API/Catalog.API.csproj index 362401a4d..f50fca5ff 100644 --- a/src/Services/Catalog/Catalog.API/Catalog.API.csproj +++ b/src/Services/Catalog/Catalog.API/Catalog.API.csproj @@ -41,37 +41,37 @@ - - - - + + + + - - - + + + - + - + - + - + - - + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Services/Catalog/Catalog.FunctionalTests/Catalog.FunctionalTests.csproj b/src/Services/Catalog/Catalog.FunctionalTests/Catalog.FunctionalTests.csproj index 9597df839..582509ffb 100644 --- a/src/Services/Catalog/Catalog.FunctionalTests/Catalog.FunctionalTests.csproj +++ b/src/Services/Catalog/Catalog.FunctionalTests/Catalog.FunctionalTests.csproj @@ -33,9 +33,9 @@ - - - + + + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Catalog/Catalog.UnitTests/Catalog.UnitTests.csproj b/src/Services/Catalog/Catalog.UnitTests/Catalog.UnitTests.csproj index b2d5f0b77..705f78e8a 100644 --- a/src/Services/Catalog/Catalog.UnitTests/Catalog.UnitTests.csproj +++ b/src/Services/Catalog/Catalog.UnitTests/Catalog.UnitTests.csproj @@ -7,10 +7,10 @@ - - + + - + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Identity/Identity.API/Identity.API.csproj b/src/Services/Identity/Identity.API/Identity.API.csproj index 54c6f2a0e..7ae8fb70c 100644 --- a/src/Services/Identity/Identity.API/Identity.API.csproj +++ b/src/Services/Identity/Identity.API/Identity.API.csproj @@ -12,44 +12,44 @@ - - - - - + + + + + - - - + + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - + + - + - + - - + + - + diff --git a/src/Services/Ordering/Ordering.API/Infrastructure/AutofacModules/MediatorModule.cs b/src/Services/Ordering/Ordering.API/Infrastructure/AutofacModules/MediatorModule.cs index 2d59f1730..5aa77e06c 100644 --- a/src/Services/Ordering/Ordering.API/Infrastructure/AutofacModules/MediatorModule.cs +++ b/src/Services/Ordering/Ordering.API/Infrastructure/AutofacModules/MediatorModule.cs @@ -21,13 +21,6 @@ public class MediatorModule : Autofac.Module .Where(t => t.IsClosedTypeOf(typeof(IValidator<>))) .AsImplementedInterfaces(); - - builder.Register(context => - { - var componentContext = context.Resolve(); - return t => { object o; return componentContext.TryResolve(t, out o) ? o : null; }; - }); - builder.RegisterGeneric(typeof(LoggingBehavior<,>)).As(typeof(IPipelineBehavior<,>)); builder.RegisterGeneric(typeof(ValidatorBehavior<,>)).As(typeof(IPipelineBehavior<,>)); builder.RegisterGeneric(typeof(TransactionBehaviour<,>)).As(typeof(IPipelineBehavior<,>)); diff --git a/src/Services/Ordering/Ordering.API/Ordering.API.csproj b/src/Services/Ordering/Ordering.API/Ordering.API.csproj index 7a5813400..0be7c0d69 100644 --- a/src/Services/Ordering/Ordering.API/Ordering.API.csproj +++ b/src/Services/Ordering/Ordering.API/Ordering.API.csproj @@ -36,38 +36,37 @@ - + - + - - - - - + + + + - - - + + + - + - + - - + + diff --git a/src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj b/src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj index fe7da8680..67d1462ef 100644 --- a/src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj +++ b/src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj @@ -8,7 +8,7 @@ - + @@ -16,9 +16,9 @@ - + - + diff --git a/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj b/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj index c6508b17b..54660820f 100644 --- a/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj +++ b/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj @@ -5,8 +5,7 @@ - - + diff --git a/src/Services/Ordering/Ordering.FunctionalTests/Ordering.FunctionalTests.csproj b/src/Services/Ordering/Ordering.FunctionalTests/Ordering.FunctionalTests.csproj index 9b9e67a58..c571e402e 100644 --- a/src/Services/Ordering/Ordering.FunctionalTests/Ordering.FunctionalTests.csproj +++ b/src/Services/Ordering/Ordering.FunctionalTests/Ordering.FunctionalTests.csproj @@ -17,9 +17,9 @@ - - - + + + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj b/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj index bcf3ba5a5..b268bfcbc 100644 --- a/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj +++ b/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj @@ -9,10 +9,9 @@ - - - - + + + diff --git a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs index 3edbfbc8d..8693664c3 100644 --- a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs +++ b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs @@ -147,5 +147,10 @@ public class OrderingContextDesignFactory : IDesignTimeDbContextFactory(TRequest request, CancellationToken cancellationToken = default) where TRequest : IRequest + { + return Task.CompletedTask; + } } } diff --git a/src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj b/src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj index ac69727e2..3c6157e99 100644 --- a/src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj +++ b/src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj @@ -8,22 +8,22 @@ - + - - - - + + + + - - + + - + diff --git a/src/Services/Ordering/Ordering.UnitTests/Ordering.UnitTests.csproj b/src/Services/Ordering/Ordering.UnitTests/Ordering.UnitTests.csproj index e004f9c8c..8dd13a7ba 100644 --- a/src/Services/Ordering/Ordering.UnitTests/Ordering.UnitTests.csproj +++ b/src/Services/Ordering/Ordering.UnitTests/Ordering.UnitTests.csproj @@ -7,10 +7,10 @@ - - + + - + all runtime; build; native; contentfiles; analyzers diff --git a/src/Services/Payment/Payment.API/Payment.API.csproj b/src/Services/Payment/Payment.API/Payment.API.csproj index 02c255fa6..9c1527206 100644 --- a/src/Services/Payment/Payment.API/Payment.API.csproj +++ b/src/Services/Payment/Payment.API/Payment.API.csproj @@ -9,18 +9,18 @@ - + - + - + - - + + diff --git a/src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj b/src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj index ddbd22afd..1c6b83fee 100644 --- a/src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj +++ b/src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj @@ -15,13 +15,13 @@ - - - + + + - + - + diff --git a/src/Tests/Services/Application.FunctionalTests/Application.FunctionalTests.csproj b/src/Tests/Services/Application.FunctionalTests/Application.FunctionalTests.csproj index bd3ab30a1..d5c6bb3cb 100644 --- a/src/Tests/Services/Application.FunctionalTests/Application.FunctionalTests.csproj +++ b/src/Tests/Services/Application.FunctionalTests/Application.FunctionalTests.csproj @@ -42,8 +42,8 @@ - - + + all diff --git a/src/Web/WebMVC/WebMVC.csproj b/src/Web/WebMVC/WebMVC.csproj index a8ce35604..a34a80268 100644 --- a/src/Web/WebMVC/WebMVC.csproj +++ b/src/Web/WebMVC/WebMVC.csproj @@ -26,16 +26,16 @@ - - - - + + + + - + - + diff --git a/src/Web/WebSPA/Client/angular.json b/src/Web/WebSPA/Client/angular.json index 10b7036c2..f00440e80 100644 --- a/src/Web/WebSPA/Client/angular.json +++ b/src/Web/WebSPA/Client/angular.json @@ -117,5 +117,8 @@ "@schematics/angular:directive": { "prefix": "app" } + }, + "cli": { + "analytics": false } } \ No newline at end of file diff --git a/src/Web/WebSPA/Client/src/modules/app.routes.ts b/src/Web/WebSPA/Client/src/modules/app.routes.ts index 3816a9307..570ae5e16 100644 --- a/src/Web/WebSPA/Client/src/modules/app.routes.ts +++ b/src/Web/WebSPA/Client/src/modules/app.routes.ts @@ -15,4 +15,4 @@ export const routes: Routes = [ { path: 'order', component: OrdersNewComponent }, ]; -export const routing = RouterModule.forRoot(routes, {}); +export const routing = RouterModule.forRoot(routes, { }); diff --git a/src/Web/WebSPA/Client/src/modules/basket/basket.service.ts b/src/Web/WebSPA/Client/src/modules/basket/basket.service.ts index b14ff3e9b..b8f07c88d 100644 --- a/src/Web/WebSPA/Client/src/modules/basket/basket.service.ts +++ b/src/Web/WebSPA/Client/src/modules/basket/basket.service.ts @@ -24,7 +24,7 @@ export class BasketService { }; //observable that is fired when item is removed from basket - private basketUpdateSource = new Subject(); + private basketUpdateSource = new Subject(); basketUpdate$ = this.basketUpdateSource.asObservable(); constructor(private service: DataService, private authService: SecurityService, private basketWrapperService: BasketWrapperService, private router: Router, private configurationService: ConfigurationService, private storageService: StorageService) { diff --git a/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss b/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss index 9b06bc55d..3df012eb4 100644 --- a/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss +++ b/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss @@ -5,7 +5,7 @@ &-title { position: relative; - top: $banner-height / 3.5; + top: calc($banner-height / 3.5); } $filter-height: 65px; diff --git a/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts b/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts index 59e85e8c9..b5d5411ef 100644 --- a/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts +++ b/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { Observable, Subscription } from 'rxjs'; +import { Observable, Subscription, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; import { CatalogService } from './catalog.service'; @@ -121,7 +121,7 @@ export class CatalogComponent implements OnInit { private handleError(error: any) { this.errorReceived = true; - return Observable.throw(error); + return throwError(() => error); } } diff --git a/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts b/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts index bcfb79b4c..7bc947044 100644 --- a/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts +++ b/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { Observable } from 'rxjs'; +import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; import { OrdersService } from '../orders.service'; @@ -51,10 +51,10 @@ export class OrdersNewComponent implements OnInit { this.order.cardsecuritynumber = this.newOrderForm.controls['securitycode'].value; let basketCheckout = this.basketService.mapBasketInfoCheckout(this.order); this.basketService.setBasketCheckout(basketCheckout) - .pipe(catchError((errMessage) => { + .pipe(catchError((error) => { this.errorReceived = true; this.isOrderProcessing = false; - return Observable.throw(errMessage); + return throwError(() => error); })) .subscribe(res => { this.router.navigate(['orders']); diff --git a/src/Web/WebSPA/Client/src/modules/orders/orders.component.ts b/src/Web/WebSPA/Client/src/modules/orders/orders.component.ts index 25882d2c3..041e4414a 100644 --- a/src/Web/WebSPA/Client/src/modules/orders/orders.component.ts +++ b/src/Web/WebSPA/Client/src/modules/orders/orders.component.ts @@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core'; import { OrdersService } from './orders.service'; import { IOrder } from '../shared/models/order.model'; import { ConfigurationService } from '../shared/services/configuration.service'; -import { Observable } from 'rxjs'; +import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; import { SignalrService } from '../shared/services/signalr.service'; @@ -55,7 +55,7 @@ export class OrdersComponent implements OnInit { private handleError(error: any) { this.errorReceived = true; - return Observable.throw(error); + return throwError(() => error); } } diff --git a/src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts b/src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts index c8db17803..82b84fcd9 100644 --- a/src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts +++ b/src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts @@ -17,7 +17,7 @@ export class BasketWrapperService { private addItemToBasketSource = new Subject(); addItemToBasket$ = this.addItemToBasketSource.asObservable(); - private orderCreatedSource = new Subject(); + private orderCreatedSource = new Subject(); orderCreated$ = this.orderCreatedSource.asObservable(); addItemToBasket(item: ICatalogItem) { diff --git a/src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts b/src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts index 795d30647..821ba07bf 100644 --- a/src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts +++ b/src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts @@ -9,7 +9,7 @@ import { Observable, Subject } from 'rxjs'; export class ConfigurationService { serverSettings: IConfiguration; // observable that is fired when settings are loaded from server - private settingsLoadedSource = new Subject(); + private settingsLoadedSource = new Subject(); settingsLoaded$ = this.settingsLoadedSource.asObservable(); isReady: boolean = false; diff --git a/src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts b/src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts index 680ee06e9..86d15f61e 100644 --- a/src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts +++ b/src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts @@ -9,7 +9,7 @@ import { Subject } from 'rxjs'; export class SignalrService { private _hubConnection: HubConnection; private SignalrHubUrl: string = ''; - private msgSignalrSource = new Subject(); + private msgSignalrSource = new Subject(); msgReceived$ = this.msgSignalrSource.asObservable(); constructor( diff --git a/src/Web/WebSPA/Client/src/styles/globals.scss b/src/Web/WebSPA/Client/src/styles/globals.scss index 6974df3c1..2ccd69b88 100644 --- a/src/Web/WebSPA/Client/src/styles/globals.scss +++ b/src/Web/WebSPA/Client/src/styles/globals.scss @@ -4,7 +4,6 @@ @import 'bootstrap/scss/bootstrap'; @import 'button'; @import 'form'; -/*@import 'ngx-toastr/toastr-bs4-alert.scss';*/ @import 'toastr'; @import 'utilities'; @import 'node_modules/ngx-toastr/toastr'; diff --git a/src/Web/WebSPA/WebSPA.csproj b/src/Web/WebSPA/WebSPA.csproj index 6f8745016..16592d3ba 100644 --- a/src/Web/WebSPA/WebSPA.csproj +++ b/src/Web/WebSPA/WebSPA.csproj @@ -35,14 +35,14 @@ - - + + - - + + - + diff --git a/src/Web/WebSPA/wwwroot/favicon.ico b/src/Web/WebSPA/wwwroot/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a8570bc422787423b594f0f679eb1d37ee9d800e GIT binary patch literal 100441 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 - + - + - + - + diff --git a/src/Web/WebhookClient/WebhookClient.csproj b/src/Web/WebhookClient/WebhookClient.csproj index 0273dfa31..b9aff1ad9 100644 --- a/src/Web/WebhookClient/WebhookClient.csproj +++ b/src/Web/WebhookClient/WebhookClient.csproj @@ -12,9 +12,9 @@ - + - + diff --git a/src/package-lock.json b/src/package-lock.json deleted file mode 100644 index 48e341a09..000000000 --- a/src/package-lock.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "lockfileVersion": 1 -}