Mudassir Ali
Mudassir Ali

Reputation: 8041

Concatenate different sass files to corresponding css files

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

Answers (1)

Mudassir Ali
Mudassir Ali

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

Related Questions