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
This commit is contained in:
Kevin Ansfield 2016-05-19 16:13:52 +01:00
parent c25653bd4f
commit d22fe2385f

View File

@ -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.