Commit fc70b207 authored by Ruslan Konviser's avatar Ruslan Konviser
Browse files

fix: more fixes for packages updates

parent faca5ac7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -70,12 +70,14 @@
		"Codegen",
		"CQRS",
		"devkit",
		"echarts",
		"entrypoint",
		"envalid",
		"esnext",
		"fontawesome",
		"fortawesome",
		"GQLPORT",
		"highlightjs",
		"inversify",
		"KEYMETRICS",
		"LINKEDIN",
+2 −3
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ import { routes, NbAuthModule } from '@nebular/auth';
import { NotifyService } from '@app/@core/services/notify/notify.service';
import { DeviceService } from '@app/@core/data/device.service';
import { APOLLO_OPTIONS } from 'apollo-angular';
import { HttpLink, HttpLinkModule } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { HttpLink } from 'apollo-angular/http';
import { InMemoryCache } from '@apollo/client/core';
import { PipesModule } from '@modules/client.common.angular2/pipes/pipes.module';
import { HttpClientModule } from '@angular/common/http';
import { FileUploaderModule } from '@app/@shared/file-uploader/file-uploader.module';
@@ -56,7 +56,6 @@ stories.addDecorator(
			ToasterModule.forRoot(),
			RouterModule.forChild(routes),
			NbAuthModule,
			HttpLinkModule,
			PipesModule,
			FileUploaderModule,
			Ng2SmartTableModule,
+2 −3
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ import { routes, NbAuthModule } from '@nebular/auth';
import { NotifyService } from '@app/@core/services/notify/notify.service';
import { DeviceService } from '@app/@core/data/device.service';
import { APOLLO_OPTIONS } from 'apollo-angular';
import { HttpLink, HttpLinkModule } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { HttpLink } from 'apollo-angular/http';
import { InMemoryCache } from '@apollo/client/core';
import { PipesModule } from '@modules/client.common.angular2/pipes/pipes.module';
import { HttpClientModule } from '@angular/common/http';
import { CategoryCreateComponent } from './category-create.component';
@@ -63,7 +63,6 @@ stories.addDecorator(
			ToasterModule.forRoot(),
			RouterModule.forChild(routes),
			NbAuthModule,
			HttpLinkModule,
			PipesModule,
			FileUploaderModule,
			Ng2SmartTableModule,
+2 −2
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ import { RouterModule } from '@angular/router';
import { NbAuthModule } from '@nebular/auth';
import { NotifyService } from '@app/@core/services/notify/notify.service';
import { APOLLO_OPTIONS } from 'apollo-angular';
import { HttpLink } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { HttpLink } from 'apollo-angular/http';
import { InMemoryCache } from '@apollo/client/core';
import { PipesModule } from '@modules/client.common.angular2/pipes/pipes.module';
import { HttpClient, HttpClientModule } from '@angular/common/http';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
+2 −2
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@ import { RouterModule } from '@angular/router';
import { routes, NbAuthModule } from '@nebular/auth';
import { NotifyService } from '@app/@core/services/notify/notify.service';
import { APOLLO_OPTIONS } from 'apollo-angular';
import { HttpLink } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { HttpLink } from 'apollo-angular/http';
import { InMemoryCache } from '@apollo/client/core';
import { PipesModule } from '@modules/client.common.angular2/pipes/pipes.module';
import { HttpClient, HttpClientModule } from '@angular/common/http';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
Loading