diff --git a/Gruntfile.js b/Gruntfile.js index 5aec04b..2fb011d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -31,9 +31,10 @@ module.exports = function(grunt) { var configs = require('load-grunt-configs')(grunt, options); grunt.initConfig(configs); - grunt.registerTask('generatestatic', [ + grunt.registerTask('dependencies', [ 'shell:npm_install', 'shell:bower_install', + 'shell:pip_install', 'wiredep:app', ]); @@ -43,7 +44,7 @@ module.exports = function(grunt) { ]); grunt.registerTask('dev', [ - 'generatestatic', + 'dependencies', 'jsdev' ]);