From c40193c86140f51e630903032fa6cd61caab9ab8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 14 Jul 2017 15:51:49 -0400 Subject: [PATCH] no config in u2f build --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d0928f2c1d..c24cbe1098 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -379,7 +379,7 @@ gulp.task('dist:js:fallback', function () { paths.webroot + 'js/fallback*.js' ]); - merge(mainStream, config()) + merge(mainStream) .pipe(preprocess({ context: { cacheTag: randomString } })) .pipe(uglify()) .pipe(rename({ suffix: '.min' })) @@ -392,7 +392,7 @@ gulp.task('dist:js:u2f', function () { paths.webroot + 'js/u2f*.js' ]); - merge(mainStream, config()) + merge(mainStream) .pipe(concat(paths.dist + '/js/u2f.min.js')) .pipe(uglify()) .pipe(gulp.dest('.'));