Skip to content

Commit

Permalink
fix(ngxform): fix export module not compatible with angular 10 projec…
Browse files Browse the repository at this point in the history
…ts (#57)

* fix(ngxform): fix export module not compatible with angular 10 projects

* fix(README): fix build status badge on README file
  • Loading branch information
lvoliveira committed Nov 29, 2022
1 parent f9a6141 commit 68ea135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# ng-xform - Angular library built using ngx-library yeoman generator.

[![npm version](https://badge.fury.io/js/%40esss%2Fng-xform.svg)](https://badge.fury.io/js/%40esss%2Fng-xform)
[![Build Status](https://github.com/ESSS/serialchemy/workflows/build/badge.svg)](https://github.com/ESSS/serialchemy/actions)
[![Build Status](https://github.com/ESSS/ng-xform/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/ESSS/ng-xform/actions)
[![Coverage Status](https://coveralls.io/repos/github/ESSS/ng-xform/badge.svg?branch=master)](https://coveralls.io/github/ESSS/ng-xform?branch=master)
[![dependencies Status](https://david-dm.org/esss/ng-xform/status.svg)](https://david-dm.org/esss/ng-xform)
[![devDependencies Status](https://david-dm.org/esss/ng-xform/dev-status.svg)](https://david-dm.org/esss/ng-xform?type=dev)
Expand Down
4 changes: 2 additions & 2 deletions src/ng-xform/ng-xform.module-imports.ts
Expand Up @@ -5,5 +5,5 @@ import { ModuleWithProviders } from '@angular/core';
/** Issue: Having a problem when creating package with RouterModule imported in NgModule decorator
* https://github.com/dherges/ng-packagr/issues/778#issuecomment-385122626
*/
export const bsDatepickerModuleWithProviders: ModuleWithProviders = BsDatepickerModule.forRoot();
export const bsDropdownModuleWithProviders: ModuleWithProviders = BsDropdownModule.forRoot();
export const bsDatepickerModuleWithProviders: ModuleWithProviders<any> = BsDatepickerModule.forRoot();
export const bsDropdownModuleWithProviders: ModuleWithProviders<any> = BsDropdownModule.forRoot();

0 comments on commit 68ea135

Please sign in to comment.