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')); });