[Code Style] Enforce codestyle during verify task

This commit is contained in:
Victor Woeltjen 2016-05-12 16:27:11 -07:00
parent fb159f6361
commit 6dfc52821b

View File

@ -147,6 +147,6 @@ gulp.task('develop', ['serve', 'stylesheets', 'watch']);
gulp.task('install', [ 'static', 'scripts' ]);
gulp.task('verify', [ 'lint', 'test' ]);
gulp.task('verify', [ 'lint', 'test', 'checkstyle' ]);
gulp.task('build', [ 'verify', 'install' ]);