Skip to content

Commit 5df37fa

Browse files
authored
Merge pull request #150 from akeneo/watch-yaml
Fix watch swagger files
2 parents 6ae3a9f + 9f1ae2b commit 5df37fa

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)