From b6d780dfe2c3ebf84ac947dcd2c38ef954e2b9fa Mon Sep 17 00:00:00 2001 From: koenemann Date: Mon, 22 Feb 2016 14:01:26 +0100 Subject: [PATCH] Adding owl slider into gulpfile tasks thx @Thomas-A-Reinert --- gulpfile.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index daab219..38187cd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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'));