From b4f781b0d91820de4900b9c1bfb7bcf744c050fe Mon Sep 17 00:00:00 2001 From: crisbeto Date: Sun, 23 Dec 2018 14:58:01 +0200 Subject: [PATCH] build: dev app not picking up typography changes Fixes the dev app CSS not being rebuilt when the typography styles change. --- tools/gulp/tasks/development.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/gulp/tasks/development.ts b/tools/gulp/tasks/development.ts index 2d01fb3e5f2c..f24b692e5ce6 100644 --- a/tools/gulp/tasks/development.ts +++ b/tools/gulp/tasks/development.ts @@ -138,7 +138,10 @@ task(':watch:devapp', () => { // CDK package watchers. watchFilesAndReload(join(cdkPackage.sourceDir, '**/*'), ['cdk:build-no-bundles']); - const materialCoreThemingGlob = join(materialPackage.sourceDir, '**/core/theming/**/*.scss'); + const materialCoreThemingGlob = join( + materialPackage.sourceDir, + '**/core/+(theming|typography)/**/*.scss' + ); // Material package watchers. watchFilesAndReload([