From 59cc962cc0d7eac0a00fb090da7f384ef71b92ca Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Tue, 5 Apr 2016 20:46:29 -0700 Subject: [PATCH] Add "deploy" task to do staging and prod at once --- Gruntfile.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 86ca64f30..66a5bcb9f 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -192,6 +192,9 @@ module.exports = (grunt)-> grunt.registerTask 'default', 'rebuild the project from scratch and start a local HTTP server', ['clean', 'start'] + grunt.registerTask 'deploy', 'deploy to both staging and production via CircleCI', + ['deploy:staging', 'deploy:prod'] + grunt.registerTask 'deploy:prod', 'deploy the project to production via CircleCI', ['script:deploy:prod']