The Play 2 Framework defines default resource generators in SBT:
resourceGenerators in Compile <+= LessCompiler,
resourceGenerators in Compile <+= CoffeescriptCompiler,
resourceGenerators in Compile <+= JavascriptCompiler,
I’d like to override their list to create my own list of resource generators which contains only LessCompiler. How can I override resourceGenerators with a new list?
You could try the following: