0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

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
This commit is contained in:
Hannah Wolfe 2015-12-15 21:32:31 +00:00
parent 5184d6b74c
commit 323b57b439

View file

@ -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']);
}
);
};