From 84c97e937c267ac1ea95221228dd51af3b057adf Mon Sep 17 00:00:00 2001 From: Pablo Marco del Pont Date: Thu, 8 Nov 2018 17:15:22 -0300 Subject: [PATCH] code review. --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index feeee5f..0584c65 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -73,7 +73,7 @@ gulp.task('webserver', function() { ] }); -gulp.task('clean-post-install', function(){ +gulp.task('clean-post-install', function() { return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', 'index.html'], {read: false}) .pipe(clean()); @@ -85,7 +85,7 @@ gulp.task('watch', function() { gulp.watch([paths.srcJS, paths.srcViews], ['uglify']) }); -gulp.task('copy', ['uglify'], function(){ +gulp.task('copy', ['uglify'], function() { gulp.src('dist/*.js') .pipe(gulp.dest('../../wrapper-demo/node_modules/foca-modal-nota-pedido/dist')); }); -- 1.9.1