From d22fe2385fe863c0d70cebae1d49553da1268145 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 19 May 2016 16:13:52 +0100 Subject: [PATCH] Fix order of subtasks in `grunt init` no issue - moves the `update_submodules` task to be first to ensure we the client code is in place ready for the ember/bower tasks --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2a20f10742..0237c4dfd2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -795,7 +795,7 @@ var _ = require('lodash'), // `bower` does have some quirks, such as not running as root. If you have problems please try running // `grunt init --verbose` to see if there are any errors. grunt.registerTask('init', 'Prepare the project for development', - ['shell:ember:init', 'shell:bower', 'update_submodules', 'assets', 'default']); + ['update_submodules', 'shell:ember:init', 'shell:bower', 'assets', 'default']); // ### Basic Asset Building // Builds and moves necessary client assets. Prod additionally builds the ember app.