Search code examples
pythoncssdebuggingsasswebassets

Why won't python webassets pyscss regenerate css from scss files in debug mode?


I'm using the pyscss compiler in the python webassets library with webassets debug configs all set to true. But when I make changes to an scss file and reload the page that includes the generated css file, I see that the css file has not be regenerated and does not include my changes. Why is this happening?


Solution

  • Use depends='*.scss' as noted in this issue on GitHub.