Skip to content

Commit

Permalink
Adding owl slider into gulpfile tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerkoenemann committed Feb 22, 2016
1 parent 4ce85e4 commit b6d780d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ gulp.task('copy-assets', function() {
gulp.src(basePaths.bower + 'fontawesome/scss/*.scss')
.pipe(gulp.dest('./sass/fontawesome'));

// owl JS files
gulp.src(basePaths.bower + 'OwlCarousel2/dist/*.js')
.pipe(gulp.dest('./js'));

// Copy all Owl2 SCSS files
gulp.src(basePaths.bower + 'OwlCarousel2/dist/assets/*.css')
.pipe(gulp.dest('./css'));

// Copy jQuery
gulp.src(basePaths.bower + 'jquery/dist/*.js')
.pipe(gulp.dest('./js'));
Expand Down

0 comments on commit b6d780d

Please sign in to comment.