From 55b1061bebe2890591f35a002e49dbfe11fc2ed4 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Mon, 14 Dec 2015 16:57:06 -0500 Subject: [PATCH] Work on supporting DoubleScroll Per #19. --- bower.json | 5 +++-- gulpfile.js | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bower.json b/bower.json index 61071ccb..984feb6b 100644 --- a/bower.json +++ b/bower.json @@ -17,7 +17,8 @@ "underscore": "~1.8.3", "uri.js": "~1.15.1", "components-font-awesome": "~4.3.0", - "doublescroll": "https://github.com/avianey/jqDoubleScroll.git", + "doublescroll": "avianey/jqDoubleScroll", "spin.js": "~2.3.2" - } + }, + "private": true } diff --git a/gulpfile.js b/gulpfile.js index 64d72d09..6916d423 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -35,9 +35,9 @@ gulp.task('clean', function() { return del.sync(['out/']); }); -gulp.task('buildDev', ['npm', 'bower', "clean"], function() { +gulp.task('buildDev', ['npm', 'bower', 'clean'], function() { var lib = prepBower(); - + var bowerJs = gulp.src(lib.ext('js').files) .pipe(gulp.dest('out/common/js'));