Add "deploy" task to do staging and prod at once

This commit is contained in:
Andrew Miner
2016-04-05 20:46:29 -07:00
parent 6a98afa9f2
commit 59cc962cc0
+3
View File
@@ -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']