Add pip_install in dependency building using Grunt.
This commit is contained in:
parent
be6240e9ea
commit
601f6aeec3
@ -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'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user