From 9f6d74b2bd0cfb6da827b0413cb5ffc364d41e14 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Wed, 11 Feb 2015 16:15:28 -0600 Subject: [PATCH] Removed compile sprites from prod build step --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0979fb2072..ba81aaf62e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -229,7 +229,7 @@ module.exports = function(grunt) { // Register tasks. grunt.registerTask('compile:sprites', ['clean:sprite', 'sprite', 'cssmin']); - grunt.registerTask('build:prod', ['loadManifestFiles', 'clean:build', 'compile:sprites', 'browserify', 'uglify', 'stylus', 'cssmin', 'copy:build', 'hashres']); + grunt.registerTask('build:prod', ['loadManifestFiles', 'clean:build', 'browserify', 'uglify', 'stylus', 'cssmin', 'copy:build', 'hashres']); grunt.registerTask('build:dev', ['browserify', 'stylus']); grunt.registerTask('run:dev', [ 'build:dev', 'concurrent' ]);