From 54f6d2a37684813418058eac2b7f00f5f2e03918 Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Tue, 25 Oct 2016 15:04:08 -0700 Subject: [PATCH] chore(build): fix build to update components --- tools/gulp/tasks/components.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/gulp/tasks/components.ts b/tools/gulp/tasks/components.ts index b9f3cbebbd4c..2bfceeb9d2c8 100644 --- a/tools/gulp/tasks/components.ts +++ b/tools/gulp/tasks/components.ts @@ -26,9 +26,9 @@ const tsconfigPath = path.relative(PROJECT_ROOT, path.join(componentsDir, 'tscon /** [Watch task] Rebuilds (ESM output) whenever ts, scss, or html sources change. */ task(':watch:components', () => { - watch(path.join(componentsDir, '**/*.ts'), [':build:components:ts']); - watch(path.join(componentsDir, '**/*.scss'), [':build:components:scss']); - watch(path.join(componentsDir, '**/*.html'), [':build:components:assets']); + watch(path.join(componentsDir, '**/*.ts'), [':build:components:rollup']); + watch(path.join(componentsDir, '**/*.scss'), [':build:components:rollup']); + watch(path.join(componentsDir, '**/*.html'), [':build:components:rollup']); }); /** [Watch task] Rebuilds for tests (CJS output) whenever ts, scss, or html sources change. */