From dcb7ef1c4c77ab7fb66d7924d4870b0147fa147e Mon Sep 17 00:00:00 2001 From: chrisbreiding Date: Sun, 20 Jul 2014 21:33:25 -0400 Subject: [PATCH] fix bug with prod stylesheet reference and bump version to 0.2.2 --- package.json | 2 +- src/tasks/stylesheets.coffee | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a5c762b..822d8e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zunder", - "version": "0.2.1", + "version": "0.2.2", "description": "A front-end build tool that makes developing apps with Ember, CoffeeScript, Browserify, and Stylus a breeze", "homepage": "https://github.com/chrisbreiding/zunder", "repository": "git://github.com/chrisbreiding/zunder.git", diff --git a/src/tasks/stylesheets.coffee b/src/tasks/stylesheets.coffee index 7a30fa9..c04b975 100644 --- a/src/tasks/stylesheets.coffee +++ b/src/tasks/stylesheets.coffee @@ -22,6 +22,7 @@ module.exports = (config)-> gulp.src "#{config.srcDir}/main.styl" .pipe stylus(errors: true).on('error', handleErrors) .pipe minify() + .pipe rename('app.css') .pipe rev() .pipe gulp.dest(config.prodDir) .pipe rev.manifest()