Globbing stylus imports does not trigger rebuilds (for new files)

I have a “main” stylus file that imports everything into it. I make use of importing a directory i.e. @import "./imports/components/*".

If I create a new stylus file in ./imports/components/* meteor won’t rebuild and include this import unless I force a rebuild (like creating a fake modification in main.styl.

Is there a better way to do this or is this a bug?

Which stylus package are you using? If you’re using MDG’s stylus package, it doesn’t properly support globbing (check out the bottom of the Atmosphere page). I use the mquandalle:stylus package and have no issues with globbing and changes being picked up.

Ah, that looks like the issue then, thanks!