From 323b57b439d8084b351eaffdfa509f3e8368c329 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 15 Dec 2015 21:32:31 +0000 Subject: [PATCH] Release should run all prod tasks refs #6150 For some reason, release was only set to do the ember prod task, not all prod tasks This ensures ghost-url gets minified and included as well as future proofing any other prod tasks --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2d9002bbe3..2ee0bec8ec 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -960,7 +960,7 @@ var _ = require('lodash'), dest: '<%= paths.releaseBuild %>/' }); - grunt.task.run(['init', 'shell:ember:prod', 'clean:release', 'shell:dedupe', 'shell:shrinkwrap', 'copy:release', 'compress:release']); + grunt.task.run(['init', 'prod', 'clean:release', 'shell:dedupe', 'shell:shrinkwrap', 'copy:release', 'compress:release']); } ); };