Skip to content

Commit 8ce6ba4

Browse files
crisbetommalerba
authored andcommitted
build: dev app not picking up typography changes (#14611)
Fixes the dev app CSS not being rebuilt when the typography styles change.
1 parent 452c6d3 commit 8ce6ba4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/gulp/tasks/development.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,10 @@ task(':watch:devapp', () => {
138138
// CDK package watchers.
139139
watchFilesAndReload(join(cdkPackage.sourceDir, '**/*'), ['cdk:build-no-bundles']);
140140

141-
const materialCoreThemingGlob = join(materialPackage.sourceDir, '**/core/theming/**/*.scss');
141+
const materialCoreThemingGlob = join(
142+
materialPackage.sourceDir,
143+
'**/core/+(theming|typography)/**/*.scss'
144+
);
142145

143146
// Material package watchers.
144147
watchFilesAndReload([

0 commit comments

Comments
 (0)