1
0
mirror of https://github.com/fazo96/ipfs-boards synced 2025-01-10 12:24:20 +01:00

trying to fix auto rebuilding

This commit is contained in:
Enrico Fasoli 2015-11-16 11:55:59 +01:00
parent 35635c46dc
commit c32dcbf73d

View File

@ -39,7 +39,11 @@ gulp.task('js',function(){
gulp.task('js-watch',function(){
var b = watchify(getBrowserify())
b.on('error',function(error){
console.log(error)
})
b.on('update', function(){
console.log('Rebundling')
applyBrowserify(b)
})
return b
@ -82,9 +86,8 @@ gulp.task('server',function(){
})
})
gulp.task('watch',function(){
var jsfiles = config.files.jsLibs.concat(config.files.mainJs)
gulp.watch(jsfiles,['js-watch'])
gulp.task('watch',['js-watch'],function(){
//gulp.watch([config.files.jsLibs,config.files.mainJs],['js-watch'])
gulp.watch(config.files.html,['html'])
gulp.watch(config.files.css,['css'])
})