Skip to content

Commit 9f1ae2b

Browse files
committed
Fix watch swagger files
1 parent 6ae3a9f commit 9f1ae2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ gulp.task('clean-dist', function () {
1616
gulp.task('watch', ['create-dist'], function() {
1717
gulp.watch('content/**/*.md', ['create-dist']);
1818
gulp.watch('content/img/**/*', ['create-dist']);
19-
gulp.watch('content/*.yaml', ['create-dist']);
20-
gulp.watch('styles/*.less', ['create-dist']);
19+
gulp.watch('content/swagger/**/*.yaml', ['create-dist']);
20+
gulp.watch('styles/**/*.less', ['create-dist']);
2121
gulp.watch('src/**/*.handlebars', ['create-dist']);
2222
});
2323

0 commit comments

Comments
 (0)