How to order the compiling of javascript files in Gulp
问题 Hi I'm trying to fix the order of the js files that get compiled in my Gulp task. The order I need: '/_sources/js/libs/*.js' '/_sources/js/plugins/*.js' '/_sources/js/custom/*.js' '/_components/*.js' Issue is that the custom folder contains a custom particlesJS script and the main particlesJS script is inside the plugins folder. So if the custom script ends up above the main particlesJS in the compiled js file everything breaks. I tried to re-order things with gulp-order and event-stream but