From 063cfdeb26d061cd56a04018d239101bca1f75ed Mon Sep 17 00:00:00 2001 From: Dustin Specker Date: Mon, 1 Sep 2014 14:41:04 -0500 Subject: [PATCH] (chore) change style.css to app.css When in production, put custom CSS into app.css instead of style.css. Style.css is no longer created. --- app/templates/_gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/_gulpfile.js b/app/templates/_gulpfile.js index 5dc64f1..65c69cf 100644 --- a/app/templates/_gulpfile.js +++ b/app/templates/_gulpfile.js @@ -409,7 +409,7 @@ gulp.task('style', ['clean'], function () { return stream.done() .pipe(plugins.autoprefixer()) .pipe(appFilter) - .pipe(plugins.concat('style.css')) + .pipe(plugins.concat('app.css')) .pipe(plugins.streamify(plugins.rev())) .pipe(plugins.cssmin()) .pipe(appFilter.restore())