Skip to content

Commit 6a9a8d2

Browse files
authored
refactor(*): tree shaking enums and tokens (#13943)
1 parent 440da05 commit 6a9a8d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+207
-190
lines changed

package-lock.json

Lines changed: 107 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"ng-packagr": "^17.2.0",
129129
"postcss-scss": "^4.0.6",
130130
"postcss": "^8.4.31",
131-
"puppeteer": "^22.0.0",
131+
"puppeteer": "^22.1.0",
132132
"sass-embedded": "^1.69.1",
133133
"sass-true": "^6.0.1",
134134
"sassdoc-plugin-localization": "^1.4.3",
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { Routes } from '@angular/router';
22
import { ChipComponent } from './chip/chip.component';
33
import { ButtonGroupComponent } from './button-group/button-group.component';
4+
import { FormComponent } from './form/form.component';
45

56
export const routes: Routes = [
67
{ path: '', redirectTo: '/chip', pathMatch: 'full' },
78
{ path: 'chip', component: ChipComponent },
8-
{ path: 'button-group', component: ButtonGroupComponent}
9-
// { path: 'form', loadComponent: () => import('./form/form.component').then(m => m.FormComponent) },
9+
{ path: 'button-group', component: ButtonGroupComponent},
10+
{ path: 'form', component: FormComponent },
1011
// { path: 'stepper', loadComponent: () => import('./stepper/stepper.component').then(m => m.StepperComponent) },
1112
// { path: 'grid', loadComponent: () => import('./grid/grid.component').then(m => m.GridComponent) }
1213
];

0 commit comments

Comments
 (0)