Commit 84c97e937c267ac1ea95221228dd51af3b057adf
1 parent
8783bb386e
Exists in
master
code review.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
gulpfile.js
... | ... | @@ -73,7 +73,7 @@ gulp.task('webserver', function() { |
73 | 73 | ] |
74 | 74 | }); |
75 | 75 | |
76 | -gulp.task('clean-post-install', function(){ | |
76 | +gulp.task('clean-post-install', function() { | |
77 | 77 | return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', |
78 | 78 | 'index.html'], {read: false}) |
79 | 79 | .pipe(clean()); |
... | ... | @@ -85,7 +85,7 @@ gulp.task('watch', function() { |
85 | 85 | gulp.watch([paths.srcJS, paths.srcViews], ['uglify']) |
86 | 86 | }); |
87 | 87 | |
88 | -gulp.task('copy', ['uglify'], function(){ | |
88 | +gulp.task('copy', ['uglify'], function() { | |
89 | 89 | gulp.src('dist/*.js') |
90 | 90 | .pipe(gulp.dest('../../wrapper-demo/node_modules/foca-modal-nota-pedido/dist')); |
91 | 91 | }); |