0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #6863 from kevinansfield/fix-grunt-init

Fix order of subtasks in `grunt init`
This commit is contained in:
Hannah Wolfe 2016-05-19 17:18:01 +01:00
commit e80b1df982

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.