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()