Add pip_install in dependency building using Grunt.

This commit is contained in:
Alexis Lahouze 2016-01-29 14:04:42 +01:00
parent be6240e9ea
commit 601f6aeec3
1 changed files with 3 additions and 2 deletions

View File

@ -31,9 +31,10 @@ module.exports = function(grunt) {
var configs = require('load-grunt-configs')(grunt, options); var configs = require('load-grunt-configs')(grunt, options);
grunt.initConfig(configs); grunt.initConfig(configs);
grunt.registerTask('generatestatic', [ grunt.registerTask('dependencies', [
'shell:npm_install', 'shell:npm_install',
'shell:bower_install', 'shell:bower_install',
'shell:pip_install',
'wiredep:app', 'wiredep:app',
]); ]);
@ -43,7 +44,7 @@ module.exports = function(grunt) {
]); ]);
grunt.registerTask('dev', [ grunt.registerTask('dev', [
'generatestatic', 'dependencies',
'jsdev' 'jsdev'
]); ]);