mirror of https://github.com/abpframework/abp.git
Browse Source
Angular UI: Added UiExtensionsTestingModule and secondary entry point for itpull/6827/head
committed by
GitHub
4 changed files with 22 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
{ |
|||
"$schema": "../../../../node_modules/ng-packagr/ng-package.schema.json", |
|||
"dest": "../../dist/theme-shared/extensions/testing", |
|||
"lib": { |
|||
"entryFile": "src/public-api.ts" |
|||
} |
|||
} |
|||
@ -0,0 +1,8 @@ |
|||
import { BaseUiExtensionsModule } from '@abp/ng.theme.shared/extensions'; |
|||
import { NgModule } from '@angular/core'; |
|||
|
|||
@NgModule({ |
|||
exports: [BaseUiExtensionsModule], |
|||
imports: [BaseUiExtensionsModule], |
|||
}) |
|||
export class UiExtensionsTestingModule {} |
|||
@ -0,0 +1 @@ |
|||
export * from './lib/ui-extensions-testing.module'; |
|||
Loading…
Reference in new issue