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 }))
});
There doesn't seem to be any option to
gulp-ruby-sass
that would help, and there's been an open GitHub issue about this problem for a couple of months now, so I think you'll have to make due with a hacky workaround.The only thing I can think of is to split up all your SCSS files into batches and invoke
sass
once for each batch then merge the resulting streams usingmerge-stream
.In order to do this you have to first find all your SCSS files, which means you need to use
glob
directly.Here's what such a solution could look like:
You'll have to play around with
maxArgs
to find a value that works for you.