I would like to use Hugo Pipes for bundling a load of CSS files for a modular CSS project.
Is it possible to use wildcards with Hugo Pipes? Something like this:
'./src/03-objects/**/**/*.css'
I’m pretty rusty with all things Hugo and web design, so wanted to ask first before diving in! Thank you 
Fabulous, thank you
. That’s my homework sorted for this evening!
I’ve managed to get this working. Firstly, set the mount for theme assets directory in config.yml
# Set mount for theme assets directory
module:
mounts:
- source: /themes/godule/assets
target: assets
Then {{ $css := resources.Match "**/*.css" }} in the partial head.html returns an array of CSS files in the top level of the assets directory. Which is nice. Here’s a snapshot of where I’m at: