From b9722e93b5ef711488fd1b9598a08e10620984cc Mon Sep 17 00:00:00 2001 From: Austin Pray Date: Sun, 4 Jan 2015 20:04:07 -0600 Subject: [PATCH] fixes wiredep task --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9a97b0d..62bfcc9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -119,9 +119,9 @@ gulp.task('build', ['styles', 'scripts', 'fonts', 'images'], function() { gulp.task('wiredep', function() { var wiredep = require('wiredep').stream; - gulp.src(obj.get(manifest, 'dependencies.theme.styles')) + gulp.src(globs.styles) .pipe(wiredep()) - .pipe(gulp.dest(manifest.buildPaths.src + 'styles/')); + .pipe(gulp.dest(path.dist + 'styles')); }); gulp.task('default', ['clean'], function() {