From 7d8cf3632ec2d679889d68335788532dd2930626 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Sat, 21 Oct 2017 08:15:12 +0200 Subject: [PATCH] build: fix examples not building Fixes an error in the `material-examples` build, because the Moment adapter wasn't added as a dependency. --- tools/gulp/packages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gulp/packages.ts b/tools/gulp/packages.ts index c65002dad845..bfa109c15063 100644 --- a/tools/gulp/packages.ts +++ b/tools/gulp/packages.ts @@ -3,8 +3,8 @@ import {join} from 'path'; export const cdkPackage = new BuildPackage('cdk'); export const materialPackage = new BuildPackage('material', [cdkPackage]); -export const examplesPackage = new BuildPackage('material-examples', [materialPackage, cdkPackage]); export const momentAdapterPackage = new BuildPackage('material-moment-adapter', [materialPackage]); +export const examplesPackage = new BuildPackage('material-examples', [momentAdapterPackage]); // The material package re-exports its secondary entry-points at the root so that all of the // components can still be imported through `@angular/material`.