Skip to content

Commit 794509d

Browse files
crisbetojosephperrott
authored andcommitted
build: index file for cdk-experimental/scrolling not being generated (#11958)
1 parent cb0ead3 commit 794509d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/cdk-experimental/scrolling/virtual-scroll-viewport.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import {dispatchFakeEvent} from '@angular/cdk/testing';
33
import {Component, Input, ViewChild, ViewContainerRef, ViewEncapsulation} from '@angular/core';
44
import {ComponentFixture, fakeAsync, flush, TestBed} from '@angular/core/testing';
55
import {animationFrameScheduler, Subject} from 'rxjs';
6-
import {ScrollingModule} from './scrolling-module';
7-
import {CdkVirtualForOf} from './virtual-for-of';
8-
import {CdkVirtualScrollViewport} from './virtual-scroll-viewport';
6+
import {CdkVirtualScrollViewport, CdkVirtualForOf, ScrollingModule} from './index';
97

108

119
describe('CdkVirtualScrollViewport', () => {

src/cdk-experimental/tsconfig-tests.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"emitDecoratorMetadata": true
2020
},
2121
"include": [
22-
"**/*.spec.ts",
23-
"index.ts"
22+
// Include the index.ts for each secondary entry-point
23+
"./*/index.ts",
24+
"**/*.spec.ts"
2425
]
2526
}

0 commit comments

Comments
 (0)