Skip to content

Commit be175fb

Browse files
committed
fix(): remove BrowserModule
1 parent 2def025 commit be175fb

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

projects/demo/src/app/app.module.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'
2-
import { BrowserModule } from '@angular/platform-browser'
32
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
43
import { CommonModule } from '@angular/common'
54
import { AppRoutingModule } from './app-routing.module'
@@ -12,7 +11,6 @@ import { HomeComponent } from './home.component'
1211
@NgModule({
1312
declarations: [AppComponent, HomeComponent],
1413
imports: [
15-
BrowserModule,
1614
CommonModule,
1715
FormsModule,
1816
ReactiveFormsModule,

projects/lib/src/form/form.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'
33
import { FormWizardComponent } from './form-wizard/form-wizard.component'
44
import { WizardOverviewComponent } from './form-wizard/wizard-overview/wizard-overview.component'
55
import { WizardStepComponent } from './form-wizard/wizard-step/wizard-step.component'
6-
import { BrowserModule } from '@angular/platform-browser'
76
import { BaloiseDesignSystemModule } from '@baloise/ds-angular-module'
87

98
const components = [FormWizardComponent, WizardOverviewComponent, WizardStepComponent]
109

1110
@NgModule({
12-
imports: [CommonModule, BrowserModule, BaloiseDesignSystemModule],
11+
imports: [CommonModule, BaloiseDesignSystemModule],
1312
declarations: [...components],
1413
exports: [...components],
1514
schemas: [CUSTOM_ELEMENTS_SCHEMA],

0 commit comments

Comments
 (0)