Get rid of Gulp migrate task

This commit is contained in:
Nikita P. Shupeyko 2017-05-14 14:50:32 +03:00
parent e0a3e68421
commit dcab412641

View File

@ -109,15 +109,6 @@ gulp.task('styles', function () {
})
// endregion
// region manage.py
gulp.task('migrate', function () {
const cmd = spawn('python', ['manage.py', 'migrate'], {stdio: 'inherit'})
cmd.on('close', function (code) {
console.log('migrate exited with code ' + code)
})
})
// endregion
// region build
gulp.task('build', function () {
runSequence(['images', 'scripts', 'styles'])