the file path is as follows. There may be multiple folders under style (not fixed 3):
app
 style
     common
        cssreset.css
     detail
        a.css
        b.css
        c.css
        d.css
     order
         a.css
         b.css
         c.css
         d.cssexpectation:
dist
 style
     common.min.css
     detail.min.css
     order.min.cssthe current way of writing is:
 1%"
        ],
        cascade: false
    }))
    .pipe(concat("main.css")) //css
    .pipe(cssmin()) //css
    .pipe(rename({ suffix: ".min" })) //
    .pipe(gulp.dest("./dist/style/"))
);the result is
dist
 style
     main.min.cssI don"t know how to write it. Is it possible to write a loop to build multiple task?? Help!
