Gulp.src() Not Reading Required JSON File's Array Values
I'm trying to get gulp.src() to stream files from an array, so I can use gulp-inject to write them to my index.html file. Listed below is my gulp.config.json file which will hold t
Solution 1:
Most likely the paths for all the files except for the one displayed are not correct so they don't enter into the pipe. You can use something like gulp-expect-file to check if all the files have entered to the pipe.
Post a Comment for "Gulp.src() Not Reading Required JSON File's Array Values"