gulpfile back Tasks fixed for windows

This commit is contained in:
Javi Gallego 2019-01-29 09:45:02 +01:00
parent 9209424bca
commit bb88c9cfe4
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ function backWatch(done) {
let sleepBin = isWindows ? '' : 'sleep 1 &&';
nodemon({
exec: `${sleepBin} node --inspect ./node_modules/gulp/bin/gulp.js`,
exec: `${sleepBin}node --inspect ./node_modules/gulp/bin/gulp.js`,
args: ['backOnly'],
watch: backSources,
done: done