Skip to content

Commit 2ebb46f

Browse files
authored
chore(build): fix build to update components (#1604)
1 parent 8e16992 commit 2ebb46f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/gulp/tasks/components.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ const tsconfigPath = path.relative(PROJECT_ROOT, path.join(componentsDir, 'tscon
2626

2727
/** [Watch task] Rebuilds (ESM output) whenever ts, scss, or html sources change. */
2828
task(':watch:components', () => {
29-
watch(path.join(componentsDir, '**/*.ts'), [':build:components:ts']);
30-
watch(path.join(componentsDir, '**/*.scss'), [':build:components:scss']);
31-
watch(path.join(componentsDir, '**/*.html'), [':build:components:assets']);
29+
watch(path.join(componentsDir, '**/*.ts'), [':build:components:rollup']);
30+
watch(path.join(componentsDir, '**/*.scss'), [':build:components:rollup']);
31+
watch(path.join(componentsDir, '**/*.html'), [':build:components:rollup']);
3232
});
3333

3434
/** [Watch task] Rebuilds for tests (CJS output) whenever ts, scss, or html sources change. */

0 commit comments

Comments
 (0)