gulp.task( 'watch', function ()
{
gulp.watch( sassDir + "**/*.scss", ['sassPostCSS'] );
gulp.watch( appDir + "*.html", ['html'] );
BsPHP.watch( appDir + "**/*.*" ).on( 'change', BsPHP.reload );
});
gulp.task( 'default', ['BsInit', 'sassPostCSS', 'watch'] );