From 6c988aa533056e18290edc0c766f87afadf9aea7 Mon Sep 17 00:00:00 2001 From: Austin Pray Date: Mon, 23 Feb 2015 18:38:11 -0600 Subject: [PATCH] Readds wiredep as dep to styles task Wiredep runs automatically as a part of the `gulp` task now --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index fb3c043..04e3023 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -137,7 +137,7 @@ var writeToManifest = function(directory) { // ### Styles // `gulp styles` - Compiles, combines, and optimizes Bower CSS and project CSS. -gulp.task('styles', function() { +gulp.task('styles', ['wiredep'], function() { var merged = merge(); manifest.forEachDependency('css', function(dep) { merged.add(gulp.src(dep.globs, {base: 'styles'})