Not processing SASS when new file is created while running gulp.watch
Try to remove ./ from the beginning of the watch scope:
gulp.task('default',function(){
// not ./sass/**/*, remove the preceding "./" ////
//////////////////////////////////////////////////
gulp.watch('sass/**/*.scss',['sass']);
});