Skip to content

Commit 64b566f

Browse files
crisbetommalerba
authored andcommitted
build: fix examples not building (#7939)
Fixes an error in the `material-examples` build, because the Moment adapter wasn't added as a dependency.
1 parent edf91c9 commit 64b566f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gulp/packages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {join} from 'path';
33

44
export const cdkPackage = new BuildPackage('cdk');
55
export const materialPackage = new BuildPackage('material', [cdkPackage]);
6-
export const examplesPackage = new BuildPackage('material-examples', [materialPackage, cdkPackage]);
76
export const momentAdapterPackage = new BuildPackage('material-moment-adapter', [materialPackage]);
7+
export const examplesPackage = new BuildPackage('material-examples', [momentAdapterPackage]);
88

99
// The material package re-exports its secondary entry-points at the root so that all of the
1010
// components can still be imported through `@angular/material`.

0 commit comments

Comments
 (0)