I am experimenting with using npm as a build tool.
I'd like to do something simple, just concat all the css files together. I can't find an npm module that does only that. there is concat, but it has no CLI interface. There are lots of gulp/grunt plugins that do it, but I don't want those dependencies for this experiement. I also understand I can use unix's cat
:
cat a.css b.css > all.css
But this doesn't support globbing. I'd like to be able to do this:
concat app/**.css > dist/all.css
Is this possible?