Commit 8b2a2434 authored by RAHUL RATHORE's avatar RAHUL RATHORE
Browse files

fix: admin web angular 13 auto migrator

parent 7a0e491d
Loading
Loading
Loading
Loading
+19 −20
Original line number Diff line number Diff line
@@ -50,17 +50,17 @@
	},
	"dependencies": {
		"@agm/core": "^1.1.0",
		"@angular/animations": "^13.0.3",
		"@angular/animations": "^13.1.0",
		"@angular/cdk": "^13.1.0",
		"@angular/common": "^13.0.3",
		"@angular/compiler": "^13.0.3",
		"@angular/core": "^13.0.3",
		"@angular/forms": "^13.0.3",
		"@angular/language-service": "^13.0.3",
		"@angular/localize": "^13.0.3",
		"@angular/platform-browser": "^13.0.3",
		"@angular/platform-browser-dynamic": "^13.0.3",
		"@angular/router": "^13.0.3",
		"@angular/common": "^13.1.0",
		"@angular/compiler": "^13.1.0",
		"@angular/core": "^13.1.0",
		"@angular/forms": "^13.1.0",
		"@angular/language-service": "^13.1.0",
		"@angular/localize": "^13.1.0",
		"@angular/platform-browser": "^13.1.0",
		"@angular/platform-browser-dynamic": "^13.1.0",
		"@angular/router": "^13.1.0",
		"@apollo/client": "^3.5.5",
		"@asymmetrik/ngx-leaflet": "^8.1.0",
		"@ever-co/angular2-wizard": "^0.6.2",
@@ -143,15 +143,14 @@
		"zone.js": "~0.11.4"
	},
	"devDependencies": {
		"@angular-builders/custom-webpack": "^12.1.3",
		"@angular-devkit/architect": "^0.1300.4",
		"@angular-devkit/build-angular": "^13.0.4",
		"@angular-devkit/build-optimizer": "^0.1202.10",
		"@angular-devkit/build-webpack": "^0.1300.4",
		"@angular-devkit/core": "^13.0.4",
		"@angular-devkit/schematics": "^13.0.4",
		"@angular/cli": "^13.0.4",
		"@angular/compiler-cli": "~13.0.3",
		"@angular-builders/custom-webpack": "^13.0.0",
		"@angular-devkit/architect": "^0.1301.0",
		"@angular-devkit/build-angular": "^13.1.0",
		"@angular-devkit/build-webpack": "^0.1301.0",
		"@angular-devkit/core": "^13.1.0",
		"@angular-devkit/schematics": "^13.1.0",
		"@angular/cli": "^13.1.0",
		"@angular/compiler-cli": "~13.1.0",
		"@storybook/addon-actions": "^6.3.12",
		"@storybook/addon-knobs": "^6.3.1",
		"@storybook/addon-links": "^6.3.12",
@@ -174,7 +173,7 @@
		"swiper": "6.4.15",
		"ts-node": "~10.3.0",
		"tslint": "~5.20.1",
		"typescript": "~4.4.4"
		"typescript": "~4.5.3"
	},
	"engines": {
		"node": ">=14.4.0",
+11 −12
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ import { NbSpinnerModule } from '@nebular/theme';
        NbSpinnerModule,
    ],
    exports: [CarrierMutationComponent],
	declarations: [CarrierMutationComponent],
	entryComponents: [CarrierMutationComponent],
    declarations: [CarrierMutationComponent]
})
export class CarrierMutationModule {}
+10 −11
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@ const COMPONENTS = [ConfirmationModalComponent];
        NbButtonModule,
    ],
    declarations: COMPONENTS,
	entryComponents: COMPONENTS,
	exports: COMPONENTS,
    exports: COMPONENTS
})
export class ConfirmationModalModule {}
+3 −4
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@ import { ElapsedTimeComponent } from './elapsed-time.component';
@NgModule({
    imports: [CommonModule, FormsModule, TranslateModule.forChild()],
    declarations: [ElapsedTimeComponent],
	entryComponents: [ElapsedTimeComponent],
	exports: [ElapsedTimeComponent],
    exports: [ElapsedTimeComponent]
})
export class ElapsedTimeModule {}
+3 −4
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@ import { NbButtonModule } from '@nebular/theme';
@NgModule({
    imports: [ThemeModule, TranslateModule.forChild(), NbButtonModule],
    exports: [ByCodeModalComponent],
	declarations: [ByCodeModalComponent],
	entryComponents: [ByCodeModalComponent],
    declarations: [ByCodeModalComponent]
})
export class ByCodeModalModule {}
Loading