Skip to content

Commit f65f989

Browse files
committed
chore(*): returning only chip in bundle test build
1 parent 29dc25d commit f65f989

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!-- Toolbar -->
22
<div role="banner">
3-
<router-outlet></router-outlet>
3+
<igx-chip [resourceStrings]="chipStrings">Chip</igx-chip>
4+
<!-- <router-outlet></router-outlet> -->
45
</div>
56

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { Component } from '@angular/core';
2+
import { ChipResourceStringsBG } from 'igniteui-angular-i18n';
23

34
@Component({
45
selector: 'app-root',
56
templateUrl: './app.component.html',
67
styleUrls: ['./app.component.scss']
78
})
89
export class AppComponent {
10+
protected chipStrings = ChipResourceStringsBG;
911
}

projects/bundle-test/src/app/app.module.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
33

44
import { AppComponent } from './app.component';
5-
import { AppRoutingModule } from './app-routing.module';
5+
// import { AppRoutingModule } from './app-routing.module';
6+
import { IgxChipsModule } from 'igniteui-angular';
67

78
@NgModule({
89
declarations: [
910
AppComponent
1011
],
1112
imports: [
1213
BrowserModule,
13-
AppRoutingModule
14+
// AppRoutingModule,
15+
IgxChipsModule
1416
],
1517
providers: [],
1618
bootstrap: [AppComponent]

0 commit comments

Comments
 (0)