From 2116853d9323600ee222e6503e55025fa503eac6 Mon Sep 17 00:00:00 2001 From: Andy Joslin Date: Thu, 20 Feb 2014 13:36:52 -0500 Subject: [PATCH] chore(build): make .min.css have version number --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ff1bcda17f..3e390ab311 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -194,14 +194,15 @@ module.exports = function(grunt) { 'build' ]); + //NOTE(ajoslin): the order of these tasks is very important. grunt.registerTask('build', [ 'sass', - 'cssmin', 'concat:dist', 'concat:distangular', 'copy', 'string-replace', 'version', + 'cssmin', 'concat:bundle', 'removelogging', 'uglify',