From cdf38cb498f54f0afc9f28bead96ba14d8ad8506 Mon Sep 17 00:00:00 2001 From: billz Date: Sun, 13 Oct 2019 00:21:47 +0100 Subject: [PATCH] Fix vendor path --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 821940e5..b03ec3c1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -69,7 +69,7 @@ function modules() { var fontAwesome = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/fontawesome-free/**/*') .pipe(gulp.dest('./dist/fontawesome-free')); // jQuery Easing - var jqueryEasing = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/jquery.easing/*.js') + var jqueryEasing = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/jquery-easing/*.js') .pipe(gulp.dest('./dist/jquery-easing')); // jQuery var jquery = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/jquery/*')