Skip to content

Commit

Permalink
change : edit gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
osmdik committed Dec 1, 2022
1 parent eb472d2 commit da2f20f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ gulp.task('helper-js', (done) => {
.pipe(uglify())
.pipe(rename('vk-faq2.min.js'))
.pipe(gulp.dest('./build/'));
gulp.src('src/blocks/slider/view.js')
.pipe(uglify())
.pipe(rename('vk-slider.min.js'))
.pipe(gulp.dest('./build/'));
done();
});

Expand All @@ -49,10 +53,6 @@ gulp.task('helper-js-pro', (done) => {
.pipe(uglify())
.pipe(rename('vk-animation.min.js'))
.pipe(gulp.dest('./build/'));
gulp.src('src/blocks/_pro/slider/view.js')
.pipe(uglify())
.pipe(rename('vk-slider.min.js'))
.pipe(gulp.dest('./build/'));
done();
});

Expand Down

0 comments on commit da2f20f

Please sign in to comment.