diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js index a66aaacdb..7758a38e0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -41,8 +41,8 @@ var build = function(src, dst) { hoist_vars: true, negate_iife: false }, - beautify: false, - warnings: true, + beautify: true, + warnings: true }) .bundle() .pipe(exorcist(path.join( DEST, dst + '.js.map'))) @@ -91,7 +91,7 @@ gulp.task('uglifyQt', ['buildQt'], function () { }); gulp.task('watch', function() { - gulp.watch(['./lib/*.js'], ['lint', 'build', 'uglify']); + gulp.watch(['./lib/*.js'], ['lint', 'prepare', 'build']); }); gulp.task('default', ['bower', 'lint', 'build', 'uglify']); |