Turn multiple css files into a single one with PostCSS

0

PostCSS usage to generate a css framework, I can use it in a good, my only problem is the output. If I have 8 CSS files the PostCSS generates and treats the 8 in new 8 files, but the ideal for me would be to merge them into a single file.

Does anyone know if it would be possible to do this with PostCSS or otherwise dynamic?

The solution need not necessarily be with gulpjs.

Thank you.

    
asked by anonymous 02.12.2015 / 12:56

1 answer

0

I was able to solve with "gulp-concat" that concatenates files.

link

    
06.01.2016 / 14:15