0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Merge pull request #3562 from PaulAdamDavis/3554-update-gui

Update Ghost-UI with grunt init
This commit is contained in:
Hannah Wolfe 2014-08-03 14:45:16 +01:00
commit 077a421d4e

View file

@ -227,6 +227,15 @@ var path = require('path'),
stdout: true
}
},
// #### Update Ghost-UI
// Used as part of `grunt init`. See the section on [Building Assets](#building%20assets) for more
// information.
ghost_ui: {
command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower update ghost-ui'),
options: {
stdout: true
}
},
// #### Generate coverage report
// See the `grunt test-coverage` task in the section on [Testing](#testing) for more information.
coverage: {
@ -836,7 +845,7 @@ var path = require('path'),
// `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:bower', 'update_submodules', 'default']);
['shell:bower', 'shell:ghost_ui', 'update_submodules', 'default']);
// ### Production assets
// `grunt prod` - will build the minified assets used in production.