gulp-community / gulp-concat

Streaming concat middleware for gulp
MIT License
792 stars 127 forks source link

Multiple concat tasks #124

Open ganlanyuan opened 8 years ago

ganlanyuan commented 8 years ago

Script tasks like

a.js + 
b.js + 
c.js ==> 
      new1.js        // just combile
      new1.min.js    // combile and minify

d.js + 
e.js +
f.js ==>
     new2.js        // just combile
     new2.min.js    // combile and minify

g.js + 
h.js +
i.js ==>
     new3.js        // just combile
     new3.min.js    // combile and minify

Is there a way I can do all these in on task?

ganlanyuan commented 8 years ago

Is there a way to set file dependency besides order?