Reputation: 8041
In my app/styles/
directory I have the following files
I'd like to concatenate those files into public/stylesheets/application_blue.css
and public/stylesheets/application_red.css
respectively
Upvotes: 2
Views: 883
Reputation: 8041
stylesheets:
defaultExtension: 'scss'
joinTo:
'stylesheets/application_blue.css': /^app\/styles\/application_blue/
'stylesheets/application_red.css': /^app\/styles\/application_red/
Okay I found the solution, might help others
Upvotes: 4