Skip to content

Commit 96d914d

Browse files
crisbetoandrewseguin
authored andcommitted
build: fix infinite loop in build-release-packages task (#17059)
Fixes an infinite loop in the `build-release-packages` task because an import from inside a package was referring to itself.
1 parent bacdc85 commit 96d914d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/testing/test-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {ModifierKeys} from '@angular/cdk/testing';
109
import {ElementDimensions} from './element-dimensions';
10+
import {ModifierKeys} from './event-objects';
1111

1212
/** An enum of non-text keys that can be used with the `sendKeys` method. */
1313
// NOTE: This is a separate enum from `@angular/cdk/keycodes` because we don't necessarily want to

0 commit comments

Comments
 (0)