From 601f6aeec38a32d3e0f3a35f0cc9896e22ba73ed Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 29 Jan 2016 14:04:42 +0100 Subject: [PATCH] Add pip_install in dependency building using Grunt. --- Gruntfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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' ]);