change how grunt splits tasks up which fix broken migrate call

Esse commit está contido em:
Henry Oswald
2016-11-23 15:32:44 +00:00
commit 3a8becbe21
3 arquivos alterados com 2 adições e 2 exclusões
+2 -2
Ver Arquivo
@@ -22,6 +22,7 @@ module.exports = (grunt) ->
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks "grunt-shell"
grunt.task.loadTasks "./tasks"
execute = {}
for service in SERVICES
@@ -112,7 +113,7 @@ module.exports = (grunt) ->
grunt.registerTask "check:make", "Check that make is installed", () ->
Helpers.checkMake @async()
grunt.registerTask 'migrate', "compile migrations and run them", ['coffee:migrate', 'shell:migrate']
grunt.registerTask 'migrate', "compile migrations and run them", ["coffee:migrate", 'shell:migrate']
Helpers =
@@ -242,5 +243,4 @@ module.exports = (grunt) ->
rclient.on 'error', errorHandler
require('load-grunt-config')(grunt)