From 43db18b50eab0306943c00e7e0c07e6feb0df510 Mon Sep 17 00:00:00 2001 From: Arman Ozak Date: Wed, 17 Jun 2020 19:35:55 +0300 Subject: [PATCH] feat: remove unused wrapper modules from dev-app --- .../dev-app/src/app/lazy-libs/account-wrapper.module.ts | 7 ------- .../dev-app/src/app/lazy-libs/identity-wrapper.module.ts | 7 ------- .../src/app/lazy-libs/setting-management-wrapper.module.ts | 7 ------- .../src/app/lazy-libs/tenant-management-wrapper.module.ts | 7 ------- 4 files changed, 28 deletions(-) delete mode 100644 npm/ng-packs/apps/dev-app/src/app/lazy-libs/account-wrapper.module.ts delete mode 100644 npm/ng-packs/apps/dev-app/src/app/lazy-libs/identity-wrapper.module.ts delete mode 100644 npm/ng-packs/apps/dev-app/src/app/lazy-libs/setting-management-wrapper.module.ts delete mode 100644 npm/ng-packs/apps/dev-app/src/app/lazy-libs/tenant-management-wrapper.module.ts diff --git a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/account-wrapper.module.ts b/npm/ng-packs/apps/dev-app/src/app/lazy-libs/account-wrapper.module.ts deleted file mode 100644 index 7130bb1a1a..0000000000 --- a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/account-wrapper.module.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NgModule } from '@angular/core'; -import { AccountModule } from '@abp/ng.account'; - -@NgModule({ - imports: [AccountModule], -}) -export class AccountWrapperModule {} diff --git a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/identity-wrapper.module.ts b/npm/ng-packs/apps/dev-app/src/app/lazy-libs/identity-wrapper.module.ts deleted file mode 100644 index fed1dcd1ec..0000000000 --- a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/identity-wrapper.module.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NgModule } from '@angular/core'; -import { IdentityModule } from '@abp/ng.identity'; - -@NgModule({ - imports: [IdentityModule], -}) -export class IdentityWrapperModule {} diff --git a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/setting-management-wrapper.module.ts b/npm/ng-packs/apps/dev-app/src/app/lazy-libs/setting-management-wrapper.module.ts deleted file mode 100644 index e5f3db8878..0000000000 --- a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/setting-management-wrapper.module.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NgModule } from '@angular/core'; -import { SettingManagementModule } from '@abp/ng.setting-management'; - -@NgModule({ - imports: [SettingManagementModule], -}) -export class SettingManagementWrapperModule {} diff --git a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/tenant-management-wrapper.module.ts b/npm/ng-packs/apps/dev-app/src/app/lazy-libs/tenant-management-wrapper.module.ts deleted file mode 100644 index 63eabda505..0000000000 --- a/npm/ng-packs/apps/dev-app/src/app/lazy-libs/tenant-management-wrapper.module.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NgModule } from '@angular/core'; -import { TenantManagementModule } from '@abp/ng.tenant-management'; - -@NgModule({ - imports: [TenantManagementModule], -}) -export class TenantManagementWrapperModule {}