Skip to content

Commit 3ae36f3

Browse files
committed
Typo in watch rules
1 parent 95cbb1a commit 3ae36f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,9 @@ gulp.task('serve:e2eapp', ['build:e2eapp'], function(done) {
284284
gulp.watch(path.join(componentsDir, '**/*.ts'), [':build:components:ts']);
285285
gulp.watch(path.join(componentsDir, '**/*.scss'), [':build:components:scss']);
286286
gulp.watch(path.join(componentsDir, '**/*.html'), [':build:components:assets']);
287-
gulp.watch(path.join(e2eAppDir, '**/*.ts'), [':build:devapp:ts']);
288-
gulp.watch(path.join(e2eAppDir, '**/*.scss'), [':build:devapp:scss']);
289-
gulp.watch(path.join(e2eAppDir, '**/*.html'), [':build:devapp:assets']);
287+
gulp.watch(path.join(e2eAppDir, '**/*.ts'), [':build:e2eapp:ts']);
288+
gulp.watch(path.join(e2eAppDir, '**/*.scss'), [':build:e2eapp:scss']);
289+
gulp.watch(path.join(e2eAppDir, '**/*.html'), [':build:e2eapp:assets']);
290290

291291
stopE2eServer = function() {
292292
stream.emit('kill');

0 commit comments

Comments
 (0)