i have approximately 30 folders, every folder have scss file. i am compiling the scss using gulp-ruby-sass
. still now it's working fine,today i created new scss file then it start giving the following error
The command line is too long.
i searched and understand the command prompt cannot process the cmd after certain length. but i don't know how to over come the problem. please find below my gulp task
gulp.task('compile-css', function() {
return sass(src + '/app/**/*.scss', { base: 'app' })
.pipe(gulp.dest(dest + '/app'))
.pipe(browserSync.reload({ stream: true }))
});